diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-09 22:58:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-20 14:26:15 +0900 |
commit | c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f (patch) | |
tree | f942598c69da9c19df6618f25d16ea9dcbe0a30f /khelpcenter | |
parent | 657e8ed6bdc71ab1ae238bdf61a9377cff768e38 (diff) | |
download | tdebase-c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f.tar.gz tdebase-c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'khelpcenter')
-rw-r--r-- | khelpcenter/application.cpp | 4 | ||||
-rw-r--r-- | khelpcenter/application.h | 4 | ||||
-rw-r--r-- | khelpcenter/khc_indexbuilder.cpp | 4 | ||||
-rw-r--r-- | khelpcenter/khc_indexbuilder.h | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/khelpcenter/application.cpp b/khelpcenter/application.cpp index 628b844a5..196df322c 100644 --- a/khelpcenter/application.cpp +++ b/khelpcenter/application.cpp @@ -27,7 +27,7 @@ using namespace KHC; -Application::Application() : KUniqueApplication(), mMainWindow( 0 ) +Application::Application() : TDEUniqueApplication(), mMainWindow( 0 ) { } @@ -49,7 +49,7 @@ int Application::newInstance() mMainWindow->openUrl( url ); - return KUniqueApplication::newInstance(); + return TDEUniqueApplication::newInstance(); } static TDECmdLineOptions options[] = diff --git a/khelpcenter/application.h b/khelpcenter/application.h index b908e2b09..aae52d199 100644 --- a/khelpcenter/application.h +++ b/khelpcenter/application.h @@ -20,13 +20,13 @@ #ifndef APPLICATION_H #define APPLICATION_H -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> namespace KHC { class MainWindow; -class Application : public KUniqueApplication +class Application : public TDEUniqueApplication { public: Application(); diff --git a/khelpcenter/khc_indexbuilder.cpp b/khelpcenter/khc_indexbuilder.cpp index dd0ee5811..0d0b4be94 100644 --- a/khelpcenter/khc_indexbuilder.cpp +++ b/khelpcenter/khc_indexbuilder.cpp @@ -26,7 +26,7 @@ #include <tdeaboutdata.h> #include <tdelocale.h> #include <tdecmdlineargs.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <kdebug.h> #include <dcopclient.h> #include <kprocess.h> @@ -181,7 +181,7 @@ int main( int argc, char **argv ) TDECmdLineArgs::init( argc, argv, &aboutData ); TDECmdLineArgs::addCmdLineOptions( options ); - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); TDEApplication app; diff --git a/khelpcenter/khc_indexbuilder.h b/khelpcenter/khc_indexbuilder.h index 8cbaf6b00..4f1c7e0f8 100644 --- a/khelpcenter/khc_indexbuilder.h +++ b/khelpcenter/khc_indexbuilder.h @@ -21,9 +21,9 @@ #ifndef KHC_INDEXBUILDER_H #define KHC_INDEXBUILDER_H -#include <kuniqueapplication.h> - #include <tqobject.h> +#include <tqstring.h> +#include <tqstringlist.h> #include <tqtimer.h> class TDEProcess; |