Rename KWallet to TDEWallet

feat/lzip-support
Timothy Pearson 11 years ago
parent 314c521a8c
commit e6abeff039

@ -95,7 +95,7 @@ New archive handling:
supports passworded arj, ace, rar, zip supports passworded arj, ace, rar, zip
step into hidden archives by pressing <RIGHT> on the archive step into hidden archives by pressing <RIGHT> on the archive
decompressing debian packages by Alt+U decompressing debian packages by Alt+U
using KWallet to store the passwords using TDEWallet to store the passwords
writes out the error messages of the archiver writes out the error messages of the archiver
archive type autodetection by its header (first 512 byte) archive type autodetection by its header (first 512 byte)

@ -48,7 +48,7 @@
static TQStringList arcProtocols = TQStringList::split(";", "tar;bzip;bzip2;gzip;krarc;zip"); static TQStringList arcProtocols = TQStringList::split(";", "tar;bzip;bzip2;gzip;krarc;zip");
KWallet::Wallet * KRarcHandler::wallet = 0; TDEWallet::Wallet * KRarcHandler::wallet = 0;
TQStringList KRarcHandler::supportedPackers() { TQStringList KRarcHandler::supportedPackers() {
TQStringList packers; TQStringList packers;
@ -525,15 +525,15 @@ TQString KRarcHandler::getPassword( TQString path ) {
TQString key = "krarc-" + path; TQString key = "krarc-" + path;
if( !KWallet::Wallet::keyDoesNotExist(KWallet::Wallet::NetworkWallet(), KWallet::Wallet::PasswordFolder(), key ) ) { if( !TDEWallet::Wallet::keyDoesNotExist(TDEWallet::Wallet::NetworkWallet(), TDEWallet::Wallet::PasswordFolder(), key ) ) {
if( !KWallet::Wallet::isOpen( KWallet::Wallet::NetworkWallet() ) && wallet != 0 ) { if( !TDEWallet::Wallet::isOpen( TDEWallet::Wallet::NetworkWallet() ) && wallet != 0 ) {
delete wallet; delete wallet;
wallet = 0; wallet = 0;
} }
if( wallet == 0 ) if( wallet == 0 )
wallet = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet() ); wallet = TDEWallet::Wallet::openWallet( TDEWallet::Wallet::NetworkWallet() );
if ( wallet && wallet->hasFolder( KWallet::Wallet::PasswordFolder() ) ) { if ( wallet && wallet->hasFolder( TDEWallet::Wallet::PasswordFolder() ) ) {
wallet->setFolder( KWallet::Wallet::PasswordFolder() ); wallet->setFolder( TDEWallet::Wallet::PasswordFolder() );
TQMap<TQString,TQString> map; TQMap<TQString,TQString> map;
if ( wallet->readMap( key, map ) == 0 ) { if ( wallet->readMap( key, map ) == 0 ) {
TQMap<TQString, TQString>::ConstIterator it = map.find( "password" ); TQMap<TQString, TQString>::ConstIterator it = map.find( "password" );
@ -551,18 +551,18 @@ TQString KRarcHandler::getPassword( TQString path ) {
if (passDlg.exec() == TDEIO::PasswordDialog::Accepted) { if (passDlg.exec() == TDEIO::PasswordDialog::Accepted) {
password = passDlg.password(); password = passDlg.password();
if ( keep ) { if ( keep ) {
if( !KWallet::Wallet::isOpen( KWallet::Wallet::NetworkWallet() ) && wallet != 0 ) { if( !TDEWallet::Wallet::isOpen( TDEWallet::Wallet::NetworkWallet() ) && wallet != 0 ) {
delete wallet; delete wallet;
wallet = 0; wallet = 0;
} }
if ( !wallet ) if ( !wallet )
wallet = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet() ); wallet = TDEWallet::Wallet::openWallet( TDEWallet::Wallet::NetworkWallet() );
if ( wallet ) { if ( wallet ) {
bool ok = true; bool ok = true;
if ( !wallet->hasFolder( KWallet::Wallet::PasswordFolder() ) ) if ( !wallet->hasFolder( TDEWallet::Wallet::PasswordFolder() ) )
ok = wallet->createFolder( KWallet::Wallet::PasswordFolder() ); ok = wallet->createFolder( TDEWallet::Wallet::PasswordFolder() );
if ( ok ) { if ( ok ) {
wallet->setFolder( KWallet::Wallet::PasswordFolder() ); wallet->setFolder( TDEWallet::Wallet::PasswordFolder() );
TQMap<TQString,TQString> map; TQMap<TQString,TQString> map;
map.insert( "login", "archive" ); map.insert( "login", "archive" );
map.insert( "password", password ); map.insert( "password", password );

@ -66,7 +66,7 @@ private:
// checks if the returned status is correct // checks if the returned status is correct
static bool checkStatus( TQString type, int exitCode ); static bool checkStatus( TQString type, int exitCode );
static KWallet::Wallet * wallet; static TDEWallet::Wallet * wallet;
}; };
class KrShellProcess : public KShellProcess { class KrShellProcess : public KShellProcess {

Loading…
Cancel
Save