diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /kioslave/smtp/transactionstate.cc | |
parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kioslave/smtp/transactionstate.cc')
-rw-r--r-- | kioslave/smtp/transactionstate.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/smtp/transactionstate.cc b/kioslave/smtp/transactionstate.cc index 67d61486a..b34b45227 100644 --- a/kioslave/smtp/transactionstate.cc +++ b/kioslave/smtp/transactionstate.cc @@ -48,7 +48,7 @@ namespace KioSMTP { void TransactionState::setMailFromFailed( const TQString & addr, const Response & r ) { setFailed(); - mErrorCode = KIO::ERR_NO_CONTENT; + mErrorCode = TDEIO::ERR_NO_CONTENT; if ( addr.isEmpty() ) mErrorMessage = i18n("The server did not accept a blank sender address.\n" "%1").arg( r.errorMessage() ); @@ -81,9 +81,9 @@ namespace KioSMTP { if ( mErrorCode ) return mErrorCode; if ( haveRejectedRecipients() || !dataCommandSucceeded() ) - return KIO::ERR_NO_CONTENT; + return TDEIO::ERR_NO_CONTENT; // ### what else? - return KIO::ERR_INTERNAL; + return TDEIO::ERR_INTERNAL; } TQString TransactionState::errorMessage() const { |