diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:33:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:33:17 +0900 |
commit | 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac (patch) | |
tree | 1d67fedde5ab6603080c8c786d55a1fcb44c45c4 /src/statusbarmessagelabel.cpp | |
parent | 71d014f5e8c8816163fdfdf63fb20e73cd1870e4 (diff) | |
download | dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.tar.gz dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/statusbarmessagelabel.cpp')
-rw-r--r-- | src/statusbarmessagelabel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/statusbarmessagelabel.cpp b/src/statusbarmessagelabel.cpp index e51cd90..9706596 100644 --- a/src/statusbarmessagelabel.cpp +++ b/src/statusbarmessagelabel.cpp @@ -36,8 +36,8 @@ StatusBarMessageLabel::StatusBarMessageLabel(TQWidget* parent) : setMinimumHeight(TDEIcon::SizeSmall); m_timer = new TQTimer(this); - connect(m_timer, TQT_SIGNAL(timeout()), - this, TQT_SLOT(timerDone())); + connect(m_timer, TQ_SIGNAL(timeout()), + this, TQ_SLOT(timerDone())); } StatusBarMessageLabel::~StatusBarMessageLabel() @@ -138,7 +138,7 @@ void StatusBarMessageLabel::paintEvent(TQPaintEvent* /* event */) void StatusBarMessageLabel::resizeEvent(TQResizeEvent* event) { TQWidget::resizeEvent(event); - TQTimer::singleShot(0, this, TQT_SLOT(assureVisibleText())); + TQTimer::singleShot(0, this, TQ_SLOT(assureVisibleText())); } void StatusBarMessageLabel::timerDone() |