summaryrefslogtreecommitdiffstats
path: root/kshowmail/configelem.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-08-31 12:45:11 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2013-08-31 12:45:11 -0500
commit471786e5395d05095f7e7259370421358d551f35 (patch)
tree8d8895ed02042eea1d021031d660f8c1b5673e9b /kshowmail/configelem.cpp
parent61db68d9b80c95fb61be92f048b8cc83c74bc078 (diff)
downloadkshowmail-471786e5395d05095f7e7259370421358d551f35.tar.gz
kshowmail-471786e5395d05095f7e7259370421358d551f35.zip
Rename KWallet to TDEWallet.
Diffstat (limited to 'kshowmail/configelem.cpp')
-rw-r--r--kshowmail/configelem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kshowmail/configelem.cpp b/kshowmail/configelem.cpp
index 43b11b5..cf4463a 100644
--- a/kshowmail/configelem.cpp
+++ b/kshowmail/configelem.cpp
@@ -312,7 +312,7 @@ bool ConfigElem::assertPassword( bool force )
else
config->writeEntry( CONFIG_ENTRY_ACCOUNT_PASSWORD, TQString::null );
- if( PasswordStorage == CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_KWALLET )
+ if( PasswordStorage == CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_TDEWALLET )
TDEWalletAccess::savePassword( getAccountName(), m_url.pass() );
config->sync();
@@ -1211,7 +1211,7 @@ void ConfigElem::printSetup( ) const
{
case CONFIG_VALUE_ACCOUNT_PASSWORD_DONT_SAVE : kdDebug() << "Password Storage: don't save" << endl; break;
case CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_FILE : kdDebug() << "Password Storage: save in file" << endl; break;
- case CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_KWALLET : kdDebug() << "Password Storage: use TDEWallet" << endl; break;
+ case CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_TDEWALLET : kdDebug() << "Password Storage: use TDEWallet" << endl; break;
default : kdDebug() << "Password Storage: invalid value" << endl;
}
@@ -1225,7 +1225,7 @@ void ConfigElem::setPasswordStorage( int storage )
{
if( storage == CONFIG_VALUE_ACCOUNT_PASSWORD_DONT_SAVE ||
storage == CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_FILE ||
- storage == CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_KWALLET )
+ storage == CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_TDEWALLET )
PasswordStorage = storage;