summaryrefslogtreecommitdiffstats
path: root/src/statusbarmessagelabel.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:57:28 +0900
commitf03ddc53e2767bb7f88374996bb192275de12e51 (patch)
tree9612fb1e8b8af0874506f53c77b2a9b748f31bb9 /src/statusbarmessagelabel.cpp
parenta822e3e4661711452c3cb35d5efaae67c56a071a (diff)
downloaddolphin-f03ddc53.tar.gz
dolphin-f03ddc53.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac)
Diffstat (limited to 'src/statusbarmessagelabel.cpp')
-rw-r--r--src/statusbarmessagelabel.cpp6
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()