summaryrefslogtreecommitdiffstats
path: root/src/AuthDialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-05 10:35:50 +0900
committerMichele Calgaro <[email protected]>2024-01-05 10:35:50 +0900
commit8a15929c2ac3206825be858e4ba4d53532c62333 (patch)
treecfddda151c5588acb8be8c5419adda96d9d634af /src/AuthDialog.cpp
parentb677334bce39e7ba8650933f05ef32ed6d1d4606 (diff)
downloadpolkit-agent-tde-8a15929c2ac3206825be858e4ba4d53532c62333.tar.gz
polkit-agent-tde-8a15929c2ac3206825be858e4ba4d53532c62333.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/AuthDialog.cpp')
-rw-r--r--src/AuthDialog.cpp8
1 files changed, 4 insertions, 4 deletions
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)