summaryrefslogtreecommitdiffstats
path: root/smb4k
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-08-27 23:14:57 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-08-27 23:14:57 -0500
commit07d1a6f299edecf33f2e476e7a26a90e388bd990 (patch)
treed45344c0e919c182fa860cdb159d57dca2100031 /smb4k
parent8d3fac90b336884c2a501f192542c9d147a4c985 (diff)
downloadsmb4k-07d1a6f299edecf33f2e476e7a26a90e388bd990.tar.gz
smb4k-07d1a6f299edecf33f2e476e7a26a90e388bd990.zip
Rename KWallet to TDEWallet
Diffstat (limited to 'smb4k')
-rw-r--r--smb4k/configdlg/smb4kauthoptions.cpp6
-rw-r--r--smb4k/configdlg/smb4kauthoptions.h4
-rw-r--r--smb4k/core/smb4kerror.cpp2
-rw-r--r--smb4k/core/smb4kpasswordhandler.cpp4
-rw-r--r--smb4k/core/smb4kpasswordhandler.h6
5 files changed, 11 insertions, 11 deletions
diff --git a/smb4k/configdlg/smb4kauthoptions.cpp b/smb4k/configdlg/smb4kauthoptions.cpp
index 6a25740..68fea55 100644
--- a/smb4k/configdlg/smb4kauthoptions.cpp
+++ b/smb4k/configdlg/smb4kauthoptions.cpp
@@ -88,11 +88,11 @@ Smb4KAuthOptions::Smb4KAuthOptions( TQWidget *parent, const char *name )
grid->addItem( spacer2, 2, 0 );
connect( use_wallet, TQT_SIGNAL( stateChanged( int ) ),
- this, TQT_SLOT( slotKWalletButtonState( int ) ) );
+ this, TQT_SLOT( slotTDEWalletButtonState( int ) ) );
connect( default_auth, TQT_SIGNAL( stateChanged( int ) ),
this, TQT_SLOT( slotDefaultAuthButtonState( int ) ) );
- slotKWalletButtonState( use_wallet->state() );
+ slotTDEWalletButtonState( use_wallet->state() );
slotDefaultAuthButtonState( default_auth->state() );
}
@@ -105,7 +105,7 @@ Smb4KAuthOptions::~Smb4KAuthOptions()
// TQT_SLOT IMPLEMENTATIONS
/////////////////////////////////////////////////////////////////////////////
-void Smb4KAuthOptions::slotKWalletButtonState( int state )
+void Smb4KAuthOptions::slotTDEWalletButtonState( int state )
{
if ( state == TQCheckBox::On )
{
diff --git a/smb4k/configdlg/smb4kauthoptions.h b/smb4k/configdlg/smb4kauthoptions.h
index 26b8c36..f15cdbf 100644
--- a/smb4k/configdlg/smb4kauthoptions.h
+++ b/smb4k/configdlg/smb4kauthoptions.h
@@ -65,12 +65,12 @@ class Smb4KAuthOptions : public TQWidget
protected slots:
/**
- * This slot manages the toggling of the KWallet support button in the
+ * This slot manages the toggling of the TDEWallet support button in the
* Authentication tab.
*
* @param state The toggle state
*/
- void slotKWalletButtonState( int state );
+ void slotTDEWalletButtonState( int state );
/**
* This slot manages the toggling of the default authentication button.
*
diff --git a/smb4k/core/smb4kerror.cpp b/smb4k/core/smb4kerror.cpp
index 3fc0ce4..cfbdff5 100644
--- a/smb4k/core/smb4kerror.cpp
+++ b/smb4k/core/smb4kerror.cpp
@@ -89,7 +89,7 @@ void Smb4KError::error( int code, const TQString &text, const TQString &details
}
case ERROR_OPENING_WALLET_FAILED:
{
- KMessageBox::error( 0, i18n( "The wallet \"%1\" could not be opened. KWallet support will be disabled for this session." ).arg( text ) );
+ KMessageBox::error( 0, i18n( "The wallet \"%1\" could not be opened. TDEWallet support will be disabled for this session." ).arg( text ) );
break;
}
diff --git a/smb4k/core/smb4kpasswordhandler.cpp b/smb4k/core/smb4kpasswordhandler.cpp
index b6e2f15..bef5607 100644
--- a/smb4k/core/smb4kpasswordhandler.cpp
+++ b/smb4k/core/smb4kpasswordhandler.cpp
@@ -118,7 +118,7 @@ void Smb4KPasswordHandler::open_close_wallet()
// Do nothing. --- Good luck!
}
- m_wallet = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet(), 0, KWallet::Wallet::Synchronous );
+ m_wallet = TDEWallet::Wallet::openWallet( TDEWallet::Wallet::NetworkWallet(), 0, TDEWallet::Wallet::Synchronous );
if ( m_wallet )
{
@@ -136,7 +136,7 @@ void Smb4KPasswordHandler::open_close_wallet()
}
else
{
- Smb4KError::error( ERROR_OPENING_WALLET_FAILED, KWallet::Wallet::NetworkWallet(), TQString() );
+ Smb4KError::error( ERROR_OPENING_WALLET_FAILED, TDEWallet::Wallet::NetworkWallet(), TQString() );
delete m_wallet;
m_wallet = NULL;
diff --git a/smb4k/core/smb4kpasswordhandler.h b/smb4k/core/smb4kpasswordhandler.h
index 1497569..e73caa7 100644
--- a/smb4k/core/smb4kpasswordhandler.h
+++ b/smb4k/core/smb4kpasswordhandler.h
@@ -236,9 +236,9 @@ class Smb4KPasswordHandler : public TQObject
void convert_old_entries();
/**
- * The KWallet object.
+ * The TDEWallet object.
*/
- KWallet::Wallet *m_wallet;
+ TDEWallet::Wallet *m_wallet;
/**
* The Smb4KAuthInfo object. For use with the askpass dialog.
@@ -252,7 +252,7 @@ class Smb4KPasswordHandler : public TQObject
/**
* This list holds the authentication data the user supplied if he/she
- * does not want to use KWallet.
+ * does not want to use TDEWallet.
*/
TQValueList<Smb4KAuthInfo *> m_auth_list;