diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:00:38 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:00:38 -0600 |
commit | 50fd2fb357f83b24afbc163791fc665285aeea09 (patch) | |
tree | 1480f907a36c63221e4f9724c75d642c76265286 /src/kima.cpp | |
parent | 63a7bd41b7dc3027f48cce5879887670cf5e2059 (diff) | |
download | kima-50fd2fb357f83b24afbc163791fc665285aeea09.tar.gz kima-50fd2fb357f83b24afbc163791fc665285aeea09.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/kima.cpp')
-rw-r--r-- | src/kima.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kima.cpp b/src/kima.cpp index 5ea4e64..4d27899 100644 --- a/src/kima.cpp +++ b/src/kima.cpp @@ -131,16 +131,16 @@ Kima::Kima(const TQString& inConfigFile, Type inType, int inActions, TQWidget* i mLayout->updatePositions(mTDEConfig); // create the menu - mMenu = new KPopupMenu(this); + mMenu = new TDEPopupMenu(this); mMenu->insertTitle(SmallIcon("hwinfo"), i18n("Kima")); if (mCpufreqd.enabled()) { mMenu->insertItem(i18n("&Performance Profiles"), mCpufreqd.menu()); } - KActionCollection* actionCollection = new KActionCollection(this, "actionCollection", kapp); + TDEActionCollection* actionCollection = new TDEActionCollection(this, "actionCollection", kapp); - KAction* action = KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(preferences()), actionCollection); + TDEAction* action = KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(preferences()), actionCollection); action->setText(i18n("&Preferences")); action->plug(mMenu); |