diff options
Diffstat (limited to 'kresources/groupwise/soap/groupwiseserver.cpp')
-rw-r--r-- | kresources/groupwise/soap/groupwiseserver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kresources/groupwise/soap/groupwiseserver.cpp b/kresources/groupwise/soap/groupwiseserver.cpp index 31a89a70a..7703fdc61 100644 --- a/kresources/groupwise/soap/groupwiseserver.cpp +++ b/kresources/groupwise/soap/groupwiseserver.cpp @@ -518,7 +518,7 @@ void GroupwiseServer::dumpCalendarFolder( const std::string &id ) itemsRequest.container = soap_new_std__string( mSoap, -1 ); *(itemsRequest.container) = id; std::string *str = soap_new_std__string( mSoap, -1 ); - str->append( "recipients message recipientqStatus" ); + str->append( "recipients message recipienStatus" ); itemsRequest.view = str; itemsRequest.filter = 0; @@ -1106,7 +1106,7 @@ bool GroupwiseServer::checkResponse( int result, ngwt__tqStatus *status ) kdDebug() << "SOAP call succeeded" << endl; } if ( status && status->code != 0 ) { - TQString msg = "SOAP Response tqStatus: " + TQString::number( status->code ); + TQString msg = "SOAP Response Status: " + TQString::number( status->code ); if ( status->description ) { msg += " "; msg += status->description->c_str(); |