summaryrefslogtreecommitdiffstats
path: root/src/urlbutton.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/urlbutton.cpp
parenta822e3e4661711452c3cb35d5efaae67c56a071a (diff)
downloaddolphin-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/urlbutton.cpp')
-rw-r--r--src/urlbutton.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/urlbutton.cpp b/src/urlbutton.cpp
index 6031048..977c4d1 100644
--- a/src/urlbutton.cpp
+++ b/src/urlbutton.cpp
@@ -41,9 +41,9 @@ URLButton::URLButton(URLNavigator* parent)
setSizePolicy(TQSizePolicy::Maximum, TQSizePolicy::Fixed);
setMinimumHeight(parent->minimumHeight());
- connect(this, TQT_SIGNAL(clicked()), parent, TQT_SLOT(slotRequestActivation()));
- connect(&Dolphin::mainWin(), TQT_SIGNAL(activeViewChanged()),
- this, TQT_SLOT(update()));
+ connect(this, TQ_SIGNAL(clicked()), parent, TQ_SLOT(slotRequestActivation()));
+ connect(&Dolphin::mainWin(), TQ_SIGNAL(activeViewChanged()),
+ this, TQ_SLOT(update()));
}
URLButton::~URLButton()