diff options
Diffstat (limited to 'libkpimexchange/core/exchangeaccount.cpp')
-rw-r--r-- | libkpimexchange/core/exchangeaccount.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libkpimexchange/core/exchangeaccount.cpp b/libkpimexchange/core/exchangeaccount.cpp index 085292309..acff34f12 100644 --- a/libkpimexchange/core/exchangeaccount.cpp +++ b/libkpimexchange/core/exchangeaccount.cpp @@ -21,7 +21,7 @@ */ #include <tqstring.h> -#include <textstream.h> +#include <tqtextstream.h> #include <tqapplication.h> #include <tqdom.h> #include <tqwidgetlist.h> @@ -89,8 +89,8 @@ TQString endecryptStr( const TQString &aStr ) { TQString result; for (uint i = 0; i < aStr.length(); i++) - result += (aStr[i].unicode() < 0x20) ? aStr[i] : - TQChar(0x1001F - aStr[i].unicode()); + result += (aStr[i].tqunicode() < 0x20) ? aStr[i] : + TQChar(0x1001F - aStr[i].tqunicode()); return result; } @@ -163,7 +163,7 @@ bool ExchangeAccount::authenticate( TQWidget *window ) bool ExchangeAccount::authenticate() { long windowId; - TQWidgetList *widgets = TQApplication::topLevelWidgets(); + TQWidgetList *widgets = TQApplication::tqtopLevelWidgets(); if ( widgets->isEmpty() ) windowId = 0; else @@ -249,7 +249,7 @@ void ExchangeAccount::slotFolderResult( KIO::Job *job ) if ( job->error() ) { kdError() << "Error: Cannot get well-know folder names; " << job->error() << endl; TQString text = i18n("ExchangeAccount\nError accessing '%1': %2") - .arg( baseURL().prettyURL() ).arg( job->errorString() ); + .tqarg( baseURL().prettyURL() ).tqarg( job->errorString() ); KMessageBox::error( 0, text ); mError = true; return; |