From 8a15929c2ac3206825be858e4ba4d53532c62333 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 5 Jan 2024 10:35:50 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/AuthDialog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/AuthDialog.cpp') diff --git a/src/AuthDialog.cpp b/src/AuthDialog.cpp index 03872af..c4848c8 100644 --- a/src/AuthDialog.cpp +++ b/src/AuthDialog.cpp @@ -102,8 +102,8 @@ AuthDialog::AuthDialog(const TQString &actionId, const TQString &message, // If there is more than 1 identity we will show the combobox for user selection if (identities.size() > 1) { - connect(m_authWidget->userCB, SIGNAL(activated(int)), - this, SLOT(on_userCB_currentIndexChanged(int))); + connect(m_authWidget->userCB, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(on_userCB_currentIndexChanged(int))); createUserCB(identities); } else @@ -336,8 +336,8 @@ AuthDetails::AuthDetails(const Details &details, const ActionDescription &action vendorUL->hide(); } - connect(vendorUL, TQT_SIGNAL(leftClickedURL(const TQString&)), - TQT_SLOT(openUrl(const TQString&))); + connect(vendorUL, TQ_SIGNAL(leftClickedURL(const TQString&)), + TQ_SLOT(openUrl(const TQString&))); } void AuthDetails::openUrl(const TQString &url) -- cgit v1.2.3