diff options
Diffstat (limited to 'kresources/scalix/kioslave/scalix.cpp')
-rw-r--r-- | kresources/scalix/kioslave/scalix.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kresources/scalix/kioslave/scalix.cpp b/kresources/scalix/kioslave/scalix.cpp index 043b0f4a1..2a0c06cdd 100644 --- a/kresources/scalix/kioslave/scalix.cpp +++ b/kresources/scalix/kioslave/scalix.cpp @@ -73,7 +73,7 @@ void Scalix::get( const KURL &url ) TQString path = url.path(); - if ( path.contains( "/freebusy/" ) ) { + if ( path.tqcontains( "/freebusy/" ) ) { retrieveFreeBusy( url ); } else { error( KIO::ERR_SLAVE_DEFINED, i18n( "Unknown path. Known path is '/freebusy/'" ) ); @@ -84,7 +84,7 @@ void Scalix::put( const KURL& url, int, bool, bool ) { TQString path = url.path(); - if ( path.contains( "/freebusy/" ) ) { + if ( path.tqcontains( "/freebusy/" ) ) { publishFreeBusy( url ); } else { error( KIO::ERR_SLAVE_DEFINED, i18n( "Unknown path. Known path is '/freebusy/'" ) ); @@ -121,7 +121,7 @@ void Scalix::retrieveFreeBusy( const KURL &url ) connect( job, TQT_SIGNAL( result( KIO::Job* ) ), this, TQT_SLOT( slotRetrieveResult( KIO::Job* ) ) ); - qApp->eventLoop()->enterLoop(); + tqApp->eventLoop()->enterLoop(); } void Scalix::publishFreeBusy( const KURL &url ) @@ -185,7 +185,7 @@ void Scalix::publishFreeBusy( const KURL &url ) connect( job, TQT_SIGNAL( result( KIO::Job* ) ), this, TQT_SLOT( slotPublishResult( KIO::Job* ) ) ); - qApp->eventLoop()->enterLoop(); + tqApp->eventLoop()->enterLoop(); } void Scalix::slotInfoMessage( KIO::Job *job, const TQString &data ) @@ -208,7 +208,7 @@ void Scalix::slotRetrieveResult( KIO::Job *job ) finished(); } - qApp->eventLoop()->exitLoop(); + tqApp->eventLoop()->exitLoop(); } void Scalix::slotPublishResult( KIO::Job *job ) @@ -219,7 +219,7 @@ void Scalix::slotPublishResult( KIO::Job *job ) finished(); } - qApp->eventLoop()->exitLoop(); + tqApp->eventLoop()->exitLoop(); } #include "scalix.moc" |