diff options
Diffstat (limited to 'tdewallet/tdewalletpopup.cpp')
-rw-r--r-- | tdewallet/tdewalletpopup.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tdewallet/tdewalletpopup.cpp b/tdewallet/tdewalletpopup.cpp index e4939cc..5639f55 100644 --- a/tdewallet/tdewalletpopup.cpp +++ b/tdewallet/tdewalletpopup.cpp @@ -35,15 +35,15 @@ TDEWalletPopup::TDEWalletPopup(const TQString& wallet, TQWidget *parent, const c TDEAction *act; act = new TDEAction(i18n("&New Wallet..."), 0, 0, this, - TQT_SLOT(createWallet()), ac, "wallet_create"); + TQ_SLOT(createWallet()), ac, "wallet_create"); act->plug(this); act = new TDEAction(i18n("&Open..."), 0, Key_Return, this, - TQT_SLOT(openWallet()), ac, "wallet_open"); + TQ_SLOT(openWallet()), ac, "wallet_open"); act->plug(this); act = new TDEAction(i18n("Change &Password..."), 0, 0, this, - TQT_SLOT(changeWalletPassword()), ac, "wallet_password"); + TQ_SLOT(changeWalletPassword()), ac, "wallet_password"); act->plug(this); TQStringList ul = TDEWallet::Wallet::users(wallet); @@ -52,7 +52,7 @@ TDEWalletPopup::TDEWalletPopup(const TQString& wallet, TQWidget *parent, const c int id = 7000; for (TQStringList::Iterator it = ul.begin(); it != ul.end(); ++it) { _appMap[id] = *it; - pm->insertItem(*it, this, TQT_SLOT(disconnectApp(int)), 0, id); + pm->insertItem(*it, this, TQ_SLOT(disconnectApp(int)), 0, id); pm->setItemParameter(id, id); id++; } @@ -61,14 +61,14 @@ TDEWalletPopup::TDEWalletPopup(const TQString& wallet, TQWidget *parent, const c } act = KStdAction::close( this, - TQT_SLOT(closeWallet()), ac, "wallet_close"); + TQ_SLOT(closeWallet()), ac, "wallet_close"); // FIXME: let's track this inside the manager so we don't need a dcop // roundtrip here. act->setEnabled(TDEWallet::Wallet::isOpen(wallet)); act->plug(this); act = new TDEAction(i18n("&Delete"), 0, Key_Delete, this, - TQT_SLOT(deleteWallet()), ac, "wallet_delete"); + TQ_SLOT(deleteWallet()), ac, "wallet_delete"); act->plug(this); } |