diff options
Diffstat (limited to 'akregator')
-rw-r--r-- | akregator/src/akregator_part.cpp | 2 | ||||
-rw-r--r-- | akregator/src/main.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/akregator/src/akregator_part.cpp b/akregator/src/akregator_part.cpp index 016b60086..52b46a051 100644 --- a/akregator/src/akregator_part.cpp +++ b/akregator/src/akregator_part.cpp @@ -982,7 +982,7 @@ bool Part::tryToLock(const TQString& backendName) { // this can only happen if the user is running this application on // different displays on the same machine. All other cases will be - // taken care of by KUniqueApplication() + // taken care of by TDEUniqueApplication() if ( oldAppName == appName ) msg = i18n("<qt>%1 already seems to be running on another display on " "this machine. <b>Running %2 more than once is not supported " diff --git a/akregator/src/main.cpp b/akregator/src/main.cpp index 4c4b31ecf..9f6e466e9 100644 --- a/akregator/src/main.cpp +++ b/akregator/src/main.cpp @@ -28,7 +28,7 @@ #include <tdecmdlineargs.h> #include <tdelocale.h> #include <knotifyclient.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include "aboutdata.h" #include "mainwindow.h" @@ -36,7 +36,7 @@ namespace Akregator { -class Application : public KUniqueApplication { +class Application : public TDEUniqueApplication { public: Application() : mMainWindow( ) {} ~Application() {} @@ -80,7 +80,7 @@ int Application::newInstance() args->clear(); } - return KUniqueApplication::newInstance(); + return TDEUniqueApplication::newInstance(); } } // namespace Akregator @@ -90,7 +90,7 @@ int main(int argc, char **argv) Akregator::AboutData about; TDECmdLineArgs::init(argc, argv, &about); TDECmdLineArgs::addCmdLineOptions( Akregator::akregator_options ); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); Akregator::Application app; |