diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-09 03:32:14 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-09 03:32:14 -0600 |
commit | b32b50d6257552d739cb4c037cd0ef29a723ba2c (patch) | |
tree | 7dcb9ad20e66274a4ac3499ea31a34d052076bf2 /kwallet/kwalletmanager.cpp | |
parent | f55824d3cfe63115be172717006b8bc42692cef7 (diff) | |
download | tdeutils-b32b50d6257552d739cb4c037cd0ef29a723ba2c.tar.gz tdeutils-b32b50d6257552d739cb4c037cd0ef29a723ba2c.zip |
Fix KWallet KDE->TDE branding issues.
Diffstat (limited to 'kwallet/kwalletmanager.cpp')
-rw-r--r-- | kwallet/kwalletmanager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kwallet/kwalletmanager.cpp b/kwallet/kwalletmanager.cpp index 89de393..38c525b 100644 --- a/kwallet/kwalletmanager.cpp +++ b/kwallet/kwalletmanager.cpp @@ -60,7 +60,7 @@ KWalletManager::KWalletManager(TQWidget *parent, const char *name, WFlags f) if (walletConfigGroup.readBoolEntry("Launch Manager", true)) { _tray = new KSystemTray(this, "kwalletmanager tray"); _tray->setPixmap(loadSystemTrayIcon("wallet_closed")); - TQToolTip::add(_tray, i18n("KDE Wallet: No wallets open.")); + TQToolTip::add(_tray, i18n("TDE Wallet: No wallets open.")); connect(_tray, TQT_SIGNAL(quitSelected()), TQT_SLOT(shuttingDown())); TQStringList wl = KWallet::Wallet::walletList(); bool isOpen = false; @@ -68,7 +68,7 @@ KWalletManager::KWalletManager(TQWidget *parent, const char *name, WFlags f) if (KWallet::Wallet::isOpen(*it)) { _tray->setPixmap(loadSystemTrayIcon("wallet_open")); TQToolTip::remove(_tray); - TQToolTip::add(_tray, i18n("KDE Wallet: A wallet is open.")); + TQToolTip::add(_tray, i18n("TDE Wallet: A wallet is open.")); isOpen = true; break; } @@ -174,7 +174,7 @@ void KWalletManager::aWalletWasOpened() { if (_tray) { _tray->setPixmap(loadSystemTrayIcon("wallet_open")); TQToolTip::remove(_tray); - TQToolTip::add(_tray, i18n("KDE Wallet: A wallet is open.")); + TQToolTip::add(_tray, i18n("TDE Wallet: A wallet is open.")); } updateWalletDisplay(); } @@ -319,7 +319,7 @@ void KWalletManager::allWalletsClosed() { if (_tray) { _tray->setPixmap(loadSystemTrayIcon("wallet_closed")); TQToolTip::remove(_tray); - TQToolTip::add(_tray, i18n("KDE Wallet: No wallets open.")); + TQToolTip::add(_tray, i18n("TDE Wallet: No wallets open.")); } possiblyQuit(); } |