diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-11 10:35:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:23:16 +0900 |
commit | e234565531cd8c11949cc6aecf16179e75312458 (patch) | |
tree | 90b0cb6c9f6c2a04712bbfb73b531275d4f63976 /konq-plugins/fsview/fsview.cpp | |
parent | be3456c5d953fb877340a51b2ef699be6b3c7c02 (diff) | |
download | tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.tar.gz tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7e9d8ea45280ad6657796da9536ccf6218111f22)
Diffstat (limited to 'konq-plugins/fsview/fsview.cpp')
-rw-r--r-- | konq-plugins/fsview/fsview.cpp | 12 |
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); } |