diff options
author | Michele Calgaro <[email protected]> | 2024-11-10 17:12:56 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-11-19 22:35:18 +0900 |
commit | 74926683f153c10d642dd7b330e90d1518ccd088 (patch) | |
tree | 502eded77b3da5b3fd9ededd4cd6977ddb2c7003 /akregator/src/main.cpp | |
parent | 79908b3926d6e3b676a34ac23faa43a477f75b65 (diff) | |
download | tdepim-74926683f153c10d642dd7b330e90d1518ccd088.tar.gz tdepim-74926683f153c10d642dd7b330e90d1518ccd088.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'akregator/src/main.cpp')
-rw-r--r-- | akregator/src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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; |