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/nexscope | |
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/nexscope')
-rw-r--r-- | noatun-plugins/nexscope/gui.cpp | 4 | ||||
-rw-r--r-- | noatun-plugins/nexscope/gui.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/nexscope/gui.cpp b/noatun-plugins/nexscope/gui.cpp index 803aba0..0a9e28d 100644 --- a/noatun-plugins/nexscope/gui.cpp +++ b/noatun-plugins/nexscope/gui.cpp @@ -71,7 +71,7 @@ private: Control::Control() : mConfigurator(0) { { - KToolBar *tools=toolBar(); + TDEToolBar *tools=toolBar(); KStdAction::save(this, TQT_SLOT(save()), actionCollection())->plug(tools); KStdAction::saveAs(this, TQT_SLOT(saveAs()), actionCollection())->plug(tools); KStdAction::open(this, TQT_SLOT(open()), actionCollection())->plug(tools); @@ -173,7 +173,7 @@ void Control::currentChanged(TQListViewItem *item) } -RendererListView::RendererListView(TQWidget *p) : KListView(p) +RendererListView::RendererListView(TQWidget *p) : TDEListView(p) { addColumn(i18n("Name")); header()->hide(); diff --git a/noatun-plugins/nexscope/gui.h b/noatun-plugins/nexscope/gui.h index baf0330..0630486 100644 --- a/noatun-plugins/nexscope/gui.h +++ b/noatun-plugins/nexscope/gui.h @@ -10,7 +10,7 @@ class Renderer; -class Control : public KMainWindow +class Control : public TDEMainWindow { Q_OBJECT @@ -34,13 +34,13 @@ protected slots: private: TQWidget *mRight; - KListView *mTree, *mCreatorsList; + TDEListView *mTree, *mCreatorsList; TQWidget *mConfigurator; KURL mCurrentURL; }; -class RendererListView : public KListView +class RendererListView : public TDEListView { Q_OBJECT |