summaryrefslogtreecommitdiffstats
path: root/ark
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-11-10 17:13:18 +0900
committerMichele Calgaro <[email protected]>2024-11-10 17:13:18 +0900
commitfcf98b70b8664d991f5c31062aba4947d404ed41 (patch)
tree74cc56c6a97749a357137aeab4dc9243a1f60d40 /ark
parent9223e1c194eea392ce07a7909afcc2e3b3713c95 (diff)
downloadtdeutils-fcf98b70b8664d991f5c31062aba4947d404ed41.tar.gz
tdeutils-fcf98b70b8664d991f5c31062aba4947d404ed41.zip
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ark')
-rw-r--r--ark/arkapp.cpp2
-rw-r--r--ark/arkapp.h4
-rw-r--r--ark/main.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/ark/arkapp.cpp b/ark/arkapp.cpp
index 4a98c94..7fc9efe 100644
--- a/ark/arkapp.cpp
+++ b/ark/arkapp.cpp
@@ -106,7 +106,7 @@ ArkApplication * ArkApplication::getInstance()
}
ArkApplication::ArkApplication()
- : KUniqueApplication(), m_windowCount(0)
+ : TDEUniqueApplication(), m_windowCount(0)
{
m_mainwidget = new TQWidget;
setMainWidget(m_mainwidget);
diff --git a/ark/arkapp.h b/ark/arkapp.h
index 1d98fa3..89de47b 100644
--- a/ark/arkapp.h
+++ b/ark/arkapp.h
@@ -33,7 +33,7 @@
#include <tqdict.h>
// KDE includes
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
class TQString;
class TQStringList;
@@ -49,7 +49,7 @@ class EqualKey
// This class follows the singleton pattern.
-class ArkApplication : public KUniqueApplication
+class ArkApplication : public TDEUniqueApplication
{
TQ_OBJECT
diff --git a/ark/main.cpp b/ark/main.cpp
index 3ec8593..3fd5e1e 100644
--- a/ark/main.cpp
+++ b/ark/main.cpp
@@ -27,7 +27,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
//
-// Note: This is a KUniqueApplication.
+// Note: This is a TDEUniqueApplication.
// To debug add --nofork to the command line.
// Be aware that newInstance() will not be called in this case, but you
// can run ark from a console, and that will invoke it in the debugger.