summaryrefslogtreecommitdiffstats
path: root/kshowmail/kcmconfigs/accountsetupdialog.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/kcmconfigs/accountsetupdialog.cpp
parent61db68d9b80c95fb61be92f048b8cc83c74bc078 (diff)
downloadkshowmail-471786e5395d05095f7e7259370421358d551f35.tar.gz
kshowmail-471786e5395d05095f7e7259370421358d551f35.zip
Rename KWallet to TDEWallet.
Diffstat (limited to 'kshowmail/kcmconfigs/accountsetupdialog.cpp')
-rw-r--r--kshowmail/kcmconfigs/accountsetupdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kshowmail/kcmconfigs/accountsetupdialog.cpp b/kshowmail/kcmconfigs/accountsetupdialog.cpp
index 9e48369..19cfe0d 100644
--- a/kshowmail/kcmconfigs/accountsetupdialog.cpp
+++ b/kshowmail/kcmconfigs/accountsetupdialog.cpp
@@ -91,7 +91,7 @@ AccountSetupDialog::AccountSetupDialog( TQWidget* parent, TDEListView* view, Acc
TQRadioButton* btnPasswordSaveTDEWallet = new TQRadioButton( i18n( "Use TDEWallet" ), gboxPassword, "btnPasswordSaveTDEWallet" );
grpPasswordStorage->insert( btnPasswordDontSave, ID_BUTTON_PASSWORD_DONT_SAVE );
grpPasswordStorage->insert( btnPasswordSaveFile, ID_BUTTON_PASSWORD_SAVE_FILE );
- grpPasswordStorage->insert( btnPasswordSaveTDEWallet, ID_BUTTON_PASSWORD_SAVE_KWALLET );
+ grpPasswordStorage->insert( btnPasswordSaveTDEWallet, ID_BUTTON_PASSWORD_SAVE_TDEWALLET );
TQToolTip::add( btnPasswordDontSave, i18n( "Don't save password. KShowmail will ask you for it at first server connect." ) );
TQToolTip::add( btnPasswordSaveFile, i18n( "Save password in the configuration file. Not recommended, because the password is just lightly encrypted" ) );
TQToolTip::add( btnPasswordSaveTDEWallet, i18n( "Use TDEWallet to save the password. Maybe you have to type in the TDEWallet master password at first server connect." ) );
@@ -269,7 +269,7 @@ void AccountSetupDialog::slotOk( )
case ID_BUTTON_PASSWORD_SAVE_FILE : account->setPasswordStorageType( CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_FILE );
account->setPassword( pass );
break;
- case ID_BUTTON_PASSWORD_SAVE_KWALLET : account->setPasswordStorageType( CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_KWALLET );
+ case ID_BUTTON_PASSWORD_SAVE_TDEWALLET : account->setPasswordStorageType( CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_TDEWALLET );
account->setPassword( pass );
break;
default : account->setPasswordStorageType( -1 );
@@ -311,7 +311,7 @@ void AccountSetupDialog::fillDialog( )
txtUser->setText( account->getUser() );
int type = account->getPasswordStorageType();
- if( type != CONFIG_VALUE_ACCOUNT_PASSWORD_DONT_SAVE && type != CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_FILE && type != CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_KWALLET )
+ if( type != CONFIG_VALUE_ACCOUNT_PASSWORD_DONT_SAVE && type != CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_FILE && type != CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_TDEWALLET )
type = DEFAULT_ACCOUNT_PASSWORD_STORAGE;
switch( type )
@@ -324,7 +324,7 @@ void AccountSetupDialog::fillDialog( )
txtPassword->setEnabled( true );
txtPassword->setText( account->getPassword() );
break;
- case CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_KWALLET : grpPasswordStorage->setButton( ID_BUTTON_PASSWORD_SAVE_KWALLET );
+ case CONFIG_VALUE_ACCOUNT_PASSWORD_SAVE_TDEWALLET : grpPasswordStorage->setButton( ID_BUTTON_PASSWORD_SAVE_TDEWALLET );
txtPassword->setEnabled( true );
txtPassword->setText( account->getPassword() );
break;