diff options
author | Michele Calgaro <[email protected]> | 2024-01-11 10:35:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-11 10:35:25 +0900 |
commit | 7e9d8ea45280ad6657796da9536ccf6218111f22 (patch) | |
tree | 67d57c480b89c5967466e39bf60f7e4f05434f15 /konq-plugins/autorefresh | |
parent | 1ecb90ecaf66e1cc8ddeacad21e71640477d9767 (diff) | |
download | tdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.tar.gz tdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'konq-plugins/autorefresh')
-rw-r--r-- | konq-plugins/autorefresh/autorefresh.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/konq-plugins/autorefresh/autorefresh.cpp b/konq-plugins/autorefresh/autorefresh.cpp index cd53587..0650424 100644 --- a/konq-plugins/autorefresh/autorefresh.cpp +++ b/konq-plugins/autorefresh/autorefresh.cpp @@ -18,11 +18,11 @@ AutoRefresh::AutoRefresh( TQObject* parent, const char* name, const TQStringList : Plugin( parent, name ) { timer = new TQTimer( this ); - connect( timer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( slotRefresh() ) ); + connect( timer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( slotRefresh() ) ); refresher = new TDESelectAction( i18n("&Auto Refresh"), "reload", 0, - this, TQT_SLOT(slotIntervalChanged()), + this, TQ_SLOT(slotIntervalChanged()), actionCollection(), "autorefresh" ); TQStringList sl; sl << i18n("None"); |