diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kresources/groupwise/soap/soapdebug.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/groupwise/soap/soapdebug.cpp')
-rw-r--r-- | kresources/groupwise/soap/soapdebug.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kresources/groupwise/soap/soapdebug.cpp b/kresources/groupwise/soap/soapdebug.cpp index 3d0e3f223..caa56e5b5 100644 --- a/kresources/groupwise/soap/soapdebug.cpp +++ b/kresources/groupwise/soap/soapdebug.cpp @@ -56,9 +56,9 @@ int main( int argc, char **argv ) KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); - QString user = args->getOption( "user" ); - QString pass = args->getOption( "password" ); - QString url = args->getOption( "server" ); + TQString user = args->getOption( "user" ); + TQString pass = args->getOption( "password" ); + TQString url = args->getOption( "server" ); #if 1 if ( user.isEmpty() ) { @@ -97,7 +97,7 @@ int main( int argc, char **argv ) #endif #if 0 - QString fbUser = args->getOption( "freebusy-user" ); + TQString fbUser = args->getOption( "freebusy-user" ); if ( fbUser.isEmpty() ) { kdError() << "Need user for which the freebusy data should be retrieved." << endl; @@ -105,7 +105,7 @@ int main( int argc, char **argv ) KCal::FreeBusy *fb = new KCal::FreeBusy; server.readFreeBusy( "user1", - QDate( 2004, 9, 1 ), QDate( 2004, 10, 31 ), fb ); + TQDate( 2004, 9, 1 ), TQDate( 2004, 10, 31 ), fb ); } #endif @@ -129,17 +129,17 @@ int main( int argc, char **argv ) } KCal::ICalFormat format; - QString ical = format.toString( &calendar ); + TQString ical = format.toString( &calendar ); kdDebug() << "ICALENDAR: " << ical << endl; #endif #if 0 - QString id = args->getOption( "addressbook-id" ); + TQString id = args->getOption( "addressbook-id" ); kdDebug() << "ADDRESSBOOK ID: " << id << endl; - QStringList ids; + TQStringList ids; ids.append( id ); KABC::ResourceMemory resource; |