summaryrefslogtreecommitdiffstats
path: root/knotes
diff options
context:
space:
mode:
Diffstat (limited to 'knotes')
-rw-r--r--knotes/main.cpp8
-rw-r--r--knotes/main.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/knotes/main.cpp b/knotes/main.cpp
index 8b85abe3c..833e56955 100644
--- a/knotes/main.cpp
+++ b/knotes/main.cpp
@@ -18,7 +18,7 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*******************************************************************/
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <tdelocale.h>
@@ -64,7 +64,7 @@ void remove_sm_from_client_leader()
Application::Application()
- : KUniqueApplication(), mMainWindow( 0 )
+ : TDEUniqueApplication(), mMainWindow( 0 )
{
}
@@ -83,7 +83,7 @@ int Application::newInstance()
else
mMainWindow->newNote();
- return KUniqueApplication::newInstance();
+ return TDEUniqueApplication::newInstance();
}
int main( int argc, char* argv[] )
@@ -119,7 +119,7 @@ int main( int argc, char* argv[] )
TDECmdLineArgs::init( argc, argv, &aboutData );
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
Application app;
app.connect( &app, TQ_SIGNAL( lastWindowClosed() ), &app, TQ_SLOT( quit() ) );
diff --git a/knotes/main.h b/knotes/main.h
index 7e7af1052..7a1f4d1c8 100644
--- a/knotes/main.h
+++ b/knotes/main.h
@@ -21,12 +21,12 @@
#ifndef MAIN_H
#define MAIN_H
-#include <kuniqueapplication.h>
+#include <tdeuniqueapplication.h>
class KNotesApp;
-class Application : public KUniqueApplication
+class Application : public TDEUniqueApplication
{
public:
Application();