summaryrefslogtreecommitdiffstats
path: root/kommander/widget/kmdrmainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/widget/kmdrmainwindow.cpp')
-rw-r--r--kommander/widget/kmdrmainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kommander/widget/kmdrmainwindow.cpp b/kommander/widget/kmdrmainwindow.cpp
index 118fcade..bd6d491f 100644
--- a/kommander/widget/kmdrmainwindow.cpp
+++ b/kommander/widget/kmdrmainwindow.cpp
@@ -14,7 +14,7 @@
#include <tqtimer.h>
KmdrMainWindow::KmdrMainWindow(TQWidget *parent, const char *name, WFlags f)
- : KMainWindow(parent, name, f)
+ : TDEMainWindow(parent, name, f)
{
TQTimer::singleShot(10, this, TQT_SIGNAL(initialize()));
}
@@ -26,7 +26,7 @@ KmdrMainWindow::~KmdrMainWindow()
bool KmdrMainWindow::queryClose()
{
- bool quit = KMainWindow::queryClose();
+ bool quit = TDEMainWindow::queryClose();
if (quit)
emit destroy();
return quit;