diff options
Diffstat (limited to 'src/ksvnwidgets')
-rw-r--r-- | src/ksvnwidgets/pwstorage.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ksvnwidgets/pwstorage.cpp b/src/ksvnwidgets/pwstorage.cpp index 706705e..ec574a7 100644 --- a/src/ksvnwidgets/pwstorage.cpp +++ b/src/ksvnwidgets/pwstorage.cpp @@ -43,7 +43,7 @@ public: m_Wallet=0; } - KWallet::Wallet*getWallet(); + TDEWallet::Wallet*getWallet(); typedef TQPair<TQString,TQString> userpw_type; typedef TQMap<TQString, userpw_type> cache_type; @@ -53,7 +53,7 @@ public: TQMutex*getCacheMutex(); protected: - KWallet::Wallet* m_Wallet; + TDEWallet::Wallet* m_Wallet; }; @@ -69,20 +69,20 @@ PwStorageData::cache_type*PwStorageData::getLoginCache() return &_LoginCache; } -KWallet::Wallet*PwStorageData::getWallet() +TDEWallet::Wallet*PwStorageData::getWallet() { static bool walletOpenFailed = false; if (m_Wallet && m_Wallet->isOpen()) { return m_Wallet; } - if (KWallet::Wallet::isEnabled()) { + if (TDEWallet::Wallet::isEnabled()) { WId window = 0; if ( tqApp->activeWindow() ) { window = tqApp->activeWindow()->winId(); } delete m_Wallet; - m_Wallet = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet(),window); + m_Wallet = TDEWallet::Wallet::openWallet( TDEWallet::Wallet::NetworkWallet(),window); } if (!m_Wallet) { walletOpenFailed = true; |