diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kioslave/media/mounthelper/dialog.cpp | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslave/media/mounthelper/dialog.cpp')
-rw-r--r-- | kioslave/media/mounthelper/dialog.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kioslave/media/mounthelper/dialog.cpp b/kioslave/media/mounthelper/dialog.cpp index 74bcfb388..549bbdc4a 100644 --- a/kioslave/media/mounthelper/dialog.cpp +++ b/kioslave/media/mounthelper/dialog.cpp @@ -22,7 +22,7 @@ #include "dialog.h" -Dialog::Dialog(QString url, QString iconName) : +Dialog::Dialog(TQString url, TQString iconName) : KDialogBase(NULL, "Dialog", true, "Decrypt Storage Device", (Cancel|User1), User1, false, KGuiItem(i18n("Decrypt"), "decrypted" )) { decryptDialog = new DecryptDialog(this); @@ -34,10 +34,10 @@ Dialog::Dialog(QString url, QString iconName) : enableButton( User1, false ); - QPixmap pixmap = KGlobal::iconLoader()->loadIcon(iconName, KIcon::NoGroup, KIcon::SizeLarge); + TQPixmap pixmap = KGlobal::iconLoader()->loadIcon(iconName, KIcon::NoGroup, KIcon::SizeLarge); decryptDialog->encryptedIcon->setPixmap( pixmap ); - connect(decryptDialog->passwordEdit, SIGNAL (textChanged(const QString &)), this, SLOT (slotPasswordChanged(const QString &))); + connect(decryptDialog->passwordEdit, TQT_SIGNAL (textChanged(const TQString &)), this, TQT_SLOT (slotPasswordChanged(const TQString &))); setMainWidget(decryptDialog); } @@ -47,20 +47,20 @@ Dialog::~Dialog() delete decryptDialog; } -QString Dialog::getPassword() +TQString Dialog::getPassword() { return decryptDialog->passwordEdit->text(); } -void Dialog::slotDialogError(QString errorMsg) +void Dialog::slotDialogError(TQString errorMsg) { kdDebug() << __func__ << "(" << errorMsg << " )" << endl; - decryptDialog->errorLabel->setText(QString("<b>%1</b>").arg(errorMsg)); + decryptDialog->errorLabel->setText(TQString("<b>%1</b>").arg(errorMsg)); decryptDialog->errorBox->show(); } -void Dialog::slotPasswordChanged(const QString &text) +void Dialog::slotPasswordChanged(const TQString &text) { enableButton( User1, !text.isEmpty() ); } |