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-07 19:57:28 +0900 |
| commit | f03ddc53e2767bb7f88374996bb192275de12e51 (patch) | |
| tree | 9612fb1e8b8af0874506f53c77b2a9b748f31bb9 /src/dolphinstatusbar.cpp | |
| parent | a822e3e4661711452c3cb35d5efaae67c56a071a (diff) | |
| download | dolphin-f03ddc53e2767bb7f88374996bb192275de12e51.tar.gz dolphin-f03ddc53e2767bb7f88374996bb192275de12e51.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/dolphinstatusbar.cpp')
| -rw-r--r-- | src/dolphinstatusbar.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dolphinstatusbar.cpp b/src/dolphinstatusbar.cpp index 543bb47..4b69112 100644 --- a/src/dolphinstatusbar.cpp +++ b/src/dolphinstatusbar.cpp @@ -48,16 +48,16 @@ DolphinStatusBar::DolphinStatusBar(DolphinView* parent) : m_progressBar->hide(); m_progressTimer = new TQTimer(this); - connect(m_progressTimer, TQT_SIGNAL(timeout()), - this, TQT_SLOT(slotProgressTimer())); + connect(m_progressTimer, TQ_SIGNAL(timeout()), + this, TQ_SLOT(slotProgressTimer())); const TQSize size(m_progressBar->sizeHint()); m_progressBar->setMaximumWidth(size.width()); setMinimumHeight(size.height()); m_messageLabel->setMinimumTextHeight(size.height()); - connect(parent, TQT_SIGNAL(signalURLChanged(const KURL&)), - this, TQT_SLOT(slotURLChanged(const KURL&))); + connect(parent, TQ_SIGNAL(signalURLChanged(const KURL&)), + this, TQ_SLOT(slotURLChanged(const KURL&))); } |
