summaryrefslogtreecommitdiffstats
path: root/konq-plugins/fsview/fsview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:35:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:35:25 +0900
commit7e9d8ea45280ad6657796da9536ccf6218111f22 (patch)
tree67d57c480b89c5967466e39bf60f7e4f05434f15 /konq-plugins/fsview/fsview.cpp
parent1ecb90ecaf66e1cc8ddeacad21e71640477d9767 (diff)
downloadtdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.tar.gz
tdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'konq-plugins/fsview/fsview.cpp')
-rw-r--r--konq-plugins/fsview/fsview.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/konq-plugins/fsview/fsview.cpp b/konq-plugins/fsview/fsview.cpp
index 8ad2ed0..fe669cd 100644
--- a/konq-plugins/fsview/fsview.cpp
+++ b/konq-plugins/fsview/fsview.cpp
@@ -203,8 +203,8 @@ void FSView::requestUpdate(Inode* i)
i->clear();
if (!_sm.scanRunning()) {
- TQTimer::singleShot(0, this, TQT_SLOT(doUpdate()));
- TQTimer::singleShot(100, this, TQT_SLOT(doRedraw()));
+ TQTimer::singleShot(0, this, TQ_SLOT(doUpdate()));
+ TQTimer::singleShot(100, this, TQ_SLOT(doRedraw()));
/* start new progress chunk */
_progressPhase = 1;
@@ -381,8 +381,8 @@ void FSView::addColorItems(TQPopupMenu* popup, int id)
_colorID = id;
popup->setCheckable(true);
- connect(popup, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(colorActivated(int)));
+ connect(popup, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(colorActivated(int)));
popup->insertItem(i18n("None"), id);
popup->insertItem(i18n("Depth"), id+1);
@@ -458,7 +458,7 @@ void FSView::doRedraw()
redo = true;
if (redo) {
- TQTimer::singleShot(500, this, TQT_SLOT(doRedraw()));
+ TQTimer::singleShot(500, this, TQ_SLOT(doRedraw()));
redrawCounter++;
}
}
@@ -532,7 +532,7 @@ void FSView::doUpdate()
}
if (_sm.scanRunning())
- TQTimer::singleShot(0, this, TQT_SLOT(doUpdate()));
+ TQTimer::singleShot(0, this, TQ_SLOT(doUpdate()));
else
emit completed(_dirsFinished);
}