diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:35:50 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 19:02:04 +0900 |
| commit | eedf1c13536da2209d117bd4d01159690ace2ee4 (patch) | |
| tree | cfddda151c5588acb8be8c5419adda96d9d634af /src/AuthDialog.cpp | |
| parent | fbceb48f298c944d510ab03b1f9bbe8e8e7e3f2a (diff) | |
| download | polkit-agent-tde-eedf1c13.tar.gz polkit-agent-tde-eedf1c13.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8a15929c2ac3206825be858e4ba4d53532c62333)
Diffstat (limited to 'src/AuthDialog.cpp')
| -rw-r--r-- | src/AuthDialog.cpp | 8 |
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) |
