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 /konq-plugins/autorefresh | |
parent | 081670a12774435ae60cf8eba9226b91d27852b3 (diff) | |
download | tdeaddons-74a2067d286867e313f736d6733407586b71195e.tar.gz tdeaddons-74a2067d286867e313f736d6733407586b71195e.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'konq-plugins/autorefresh')
-rw-r--r-- | konq-plugins/autorefresh/autorefresh.cpp | 2 | ||||
-rw-r--r-- | konq-plugins/autorefresh/autorefresh.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/konq-plugins/autorefresh/autorefresh.cpp b/konq-plugins/autorefresh/autorefresh.cpp index bce4995..9393aba 100644 --- a/konq-plugins/autorefresh/autorefresh.cpp +++ b/konq-plugins/autorefresh/autorefresh.cpp @@ -22,7 +22,7 @@ AutoRefresh::AutoRefresh( TQObject* parent, const char* name, const TQStringList timer = new TQTimer( this ); connect( timer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( slotRefresh() ) ); - refresher = new KSelectAction( i18n("&Auto Refresh"), + refresher = new TDESelectAction( i18n("&Auto Refresh"), "reload", 0, this, TQT_SLOT(slotIntervalChanged()), actionCollection(), "autorefresh" ); diff --git a/konq-plugins/autorefresh/autorefresh.h b/konq-plugins/autorefresh/autorefresh.h index ca03bb1..251ab8b 100644 --- a/konq-plugins/autorefresh/autorefresh.h +++ b/konq-plugins/autorefresh/autorefresh.h @@ -49,7 +49,7 @@ public slots: void slotIntervalChanged(); private: - KSelectAction *refresher; + TDESelectAction *refresher; TQTimer *timer; }; |