From f03ddc53e2767bb7f88374996bb192275de12e51 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 5 Jan 2024 10:33:17 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac) --- src/urlbutton.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/urlbutton.cpp') 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() -- cgit v1.2.3