summaryrefslogtreecommitdiffstats
path: root/kresources/groupwise/kioslave/groupwise.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/groupwise/kioslave/groupwise.cpp')
-rw-r--r--kresources/groupwise/kioslave/groupwise.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kresources/groupwise/kioslave/groupwise.cpp b/kresources/groupwise/kioslave/groupwise.cpp
index 8689309b..6ea0c8ed 100644
--- a/kresources/groupwise/kioslave/groupwise.cpp
+++ b/kresources/groupwise/kioslave/groupwise.cpp
@@ -106,12 +106,12 @@ void Groupwise::get( const KURL &url )
TQString path = url.path();
debugMessage( "Path: " + path );
- if ( path.tqcontains( "/freebusy" ) ) {
+ if ( path.contains( "/freebusy" ) ) {
getFreeBusy( url );
- } else if ( path.tqcontains( "/calendar" ) ) {
+ } else if ( path.contains( "/calendar" ) ) {
getCalendar( url );
- } else if ( path.tqcontains( "/addressbook" ) ) {
- if ( url.query().tqcontains( "update=true" ) )
+ } else if ( path.contains( "/addressbook" ) ) {
+ if ( url.query().contains( "update=true" ) )
updateAddressbook( url );
else
getAddressbook( url );
@@ -169,8 +169,8 @@ void Groupwise::getFreeBusy( const KURL &url )
// Sanitise local Nuernberg email addresses
kdDebug() << "Email before sanitizing: " << email << endl;
- email = email.tqreplace(TQRegExp("\\.EMEA5-1\\.EMEA5" ), "" );
- email = email.tqreplace(TQRegExp("\\.Suse.INTERNET" ), "" );
+ email = email.replace(TQRegExp("\\.EMEA5-1\\.EMEA5" ), "" );
+ email = email.replace(TQRegExp("\\.Suse.INTERNET" ), "" );
kdDebug() << "Email after sanitizing: " << email << endl;
TQString u = soapUrl( url );