diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:10:05 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:10:05 -0600 |
commit | 74a2067d286867e313f736d6733407586b71195e (patch) | |
tree | 182ea565d6909db1541424e4ffb3168b4b139c21 /noatun-plugins/dub | |
parent | 081670a12774435ae60cf8eba9226b91d27852b3 (diff) | |
download | tdeaddons-74a2067d286867e313f736d6733407586b71195e.tar.gz tdeaddons-74a2067d286867e313f736d6733407586b71195e.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'noatun-plugins/dub')
-rw-r--r-- | noatun-plugins/dub/dub/dubapp.cpp | 2 | ||||
-rw-r--r-- | noatun-plugins/dub/dub/dubapp.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/dub/dub/dubapp.cpp b/noatun-plugins/dub/dub/dubapp.cpp index d5cfce0..63eb766 100644 --- a/noatun-plugins/dub/dub/dubapp.cpp +++ b/noatun-plugins/dub/dub/dubapp.cpp @@ -35,7 +35,7 @@ #define ID_STATUS_MSG 1 DubApp::DubApp(TQWidget* parent, const char* name) - : KMainWindow(parent, name) + : TDEMainWindow(parent, name) { kdDebug(90010) << "cons dubapp" << endl; config=kapp->config(); diff --git a/noatun-plugins/dub/dub/dubapp.h b/noatun-plugins/dub/dub/dubapp.h index 0c4f27d..1ddf273 100644 --- a/noatun-plugins/dub/dub/dubapp.h +++ b/noatun-plugins/dub/dub/dubapp.h @@ -28,7 +28,7 @@ class DubView; // Application stuff -class DubApp : public KMainWindow +class DubApp : public TDEMainWindow { Q_OBJECT @@ -66,9 +66,9 @@ private: * changing the view class. */ - // KAction pointers to enable/disable actions - //KAction* fileQuit; - KAction* fileClose; + // TDEAction pointers to enable/disable actions + //TDEAction* fileQuit; + TDEAction* fileClose; // signals and slots |