diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-27 23:20:48 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-27 23:20:48 -0500 |
commit | e75af5894484aababec448af0cd9fa0f7b27a777 (patch) | |
tree | 9de9ad61339b93fb67d140ce28b6d8c56a42605e /kpdf/core | |
parent | 86866eea9b520edf6c48361518c8a1eb1bd2f94b (diff) | |
download | tdegraphics-e75af5894484aababec448af0cd9fa0f7b27a777.tar.gz tdegraphics-e75af5894484aababec448af0cd9fa0f7b27a777.zip |
Rename KWallet to TDEWallet
Diffstat (limited to 'kpdf/core')
-rw-r--r-- | kpdf/core/generator_pdf/generator_pdf.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpdf/core/generator_pdf/generator_pdf.cpp b/kpdf/core/generator_pdf/generator_pdf.cpp index a357d9ff..3e309fc5 100644 --- a/kpdf/core/generator_pdf/generator_pdf.cpp +++ b/kpdf/core/generator_pdf/generator_pdf.cpp @@ -110,7 +110,7 @@ bool PDFGenerator::loadDocument( const TQString & filePath, TQValueVector<KPDFPa // if the file didn't open correctly it might be encrypted, so ask for a pass bool firstInput = true; bool triedWallet = false; - KWallet::Wallet * wallet = 0; + TDEWallet::Wallet * wallet = 0; int keep = 1; while ( !pdfdoc->isOk() && pdfdoc->getErrorCode() == errEncrypted ) { @@ -119,8 +119,8 @@ bool PDFGenerator::loadDocument( const TQString & filePath, TQValueVector<KPDFPa // 1.A. try to retrieve the first password from the kde wallet system if ( !triedWallet ) { - TQString walletName = KWallet::Wallet::NetworkWallet(); - wallet = KWallet::Wallet::openWallet( walletName ); + TQString walletName = TDEWallet::Wallet::NetworkWallet(); + wallet = TDEWallet::Wallet::openWallet( walletName ); if ( wallet ) { // use the KPdf folder (and create if missing) |