diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:13:18 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-10 17:13:18 +0900 |
commit | fcf98b70b8664d991f5c31062aba4947d404ed41 (patch) | |
tree | 74cc56c6a97749a357137aeab4dc9243a1f60d40 /tdelirc | |
parent | 9223e1c194eea392ce07a7909afcc2e3b3713c95 (diff) | |
download | tdeutils-fcf98b70b8664d991f5c31062aba4947d404ed41.tar.gz tdeutils-fcf98b70b8664d991f5c31062aba4947d404ed41.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdelirc')
-rw-r--r-- | tdelirc/README.profile-creation | 4 | ||||
-rw-r--r-- | tdelirc/irkick/main.cpp | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tdelirc/README.profile-creation b/tdelirc/README.profile-creation index 80ec429..b977bd2 100644 --- a/tdelirc/README.profile-creation +++ b/tdelirc/README.profile-creation @@ -50,8 +50,8 @@ service name (found in the .desktop file) as attributes of them: </profile> b) Inside populate with name and author information. If your application is not a -KUniqueApplication, you **must** declare this with an "instances" tag, giving the -attribute "unique" a value of "0" (it defaults to "1", a KUniqueApplication). You +TDEUniqueApplication, you **must** declare this with an "instances" tag, giving the +attribute "unique" a value of "0" (it defaults to "1", a TDEUniqueApplication). You may optionally describe the default behavior TDELirc should take should there be more than one instance of the application, with the attribute "ifmulti" which may take one of "dontsend" (do nothing if >1 instance), "sendtoone" (send call to one diff --git a/tdelirc/irkick/main.cpp b/tdelirc/irkick/main.cpp index 612262d..be98cae 100644 --- a/tdelirc/irkick/main.cpp +++ b/tdelirc/irkick/main.cpp @@ -13,7 +13,7 @@ #include <tdeaboutdata.h> #include <tdeglobal.h> #include <kdebug.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include "irkick.h" @@ -27,8 +27,8 @@ extern "C" TDE_EXPORT int kdemain(int argc, char *argv[]) aboutData->addCredit("Antonio Larrosa Jiménez", I18N_NOOP("Ideas"), "larrosa@kde.org"); TDECmdLineArgs::init( argc, argv, aboutData ); - KUniqueApplication::addCmdLineOptions(); - KUniqueApplication app; + TDEUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication app; TDEGlobal::locale()->insertCatalogue( "tdelirc" ); app.disableSessionManagement(); IRKick *theIRKick = new IRKick("IRKick"); |