diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:16:01 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:16:01 -0600 |
commit | 9771f17f8cc5252b12ec5f3edf47ff9bffdf997f (patch) | |
tree | b9e389db87bdba126010d03fb5bccdc748d0e6fa /kommander/widget | |
parent | 9930e16dde86b7de9b792613d826f4f8648b9768 (diff) | |
download | tdewebdev-9771f17f8cc5252b12ec5f3edf47ff9bffdf997f.tar.gz tdewebdev-9771f17f8cc5252b12ec5f3edf47ff9bffdf997f.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kommander/widget')
-rw-r--r-- | kommander/widget/kmdrmainwindow.cpp | 4 | ||||
-rw-r--r-- | kommander/widget/kmdrmainwindow.h | 2 |
2 files changed, 3 insertions, 3 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; diff --git a/kommander/widget/kmdrmainwindow.h b/kommander/widget/kmdrmainwindow.h index 5e31f122..f768552d 100644 --- a/kommander/widget/kmdrmainwindow.h +++ b/kommander/widget/kmdrmainwindow.h @@ -17,7 +17,7 @@ /** @author Andras Mantia <[email protected]> */ -class KmdrMainWindow : public KMainWindow +class KmdrMainWindow : public TDEMainWindow { Q_OBJECT |