summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-08-27 23:15:14 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-08-27 23:15:14 -0500
commit969364e03271c893a6f7dea52fb46dc9b4a78e85 (patch)
tree931e6e9bcbdb3f8972622cfe0239ee7e8c3eee3a
parent6e38e5098148e3e406f5372b2e5ddf530aa06e26 (diff)
downloadtdesvn-969364e03271c893a6f7dea52fb46dc9b4a78e85.tar.gz
tdesvn-969364e03271c893a6f7dea52fb46dc9b4a78e85.zip
Rename KWallet to TDEWallet
-rw-r--r--ChangeLog2
-rw-r--r--src/ksvnwidgets/pwstorage.cpp10
2 files changed, 6 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 8badfa1..2bd49b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,7 +22,7 @@ version 1.0.0
* Passwords may hold in a memory cache until application ends
version 0.14.5
- * fixed the problems accessing KWallet from within threads which let sometimes tdesvn die
+ * fixed the problems accessing TDEWallet from within threads which let sometimes tdesvn die
version 0.14.4
* fix a binary compatible issue, see #329
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;