diff options
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) |