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 /kode/kwsdl/main.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 'kode/kwsdl/main.cpp')
-rw-r--r-- | kode/kwsdl/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kode/kwsdl/main.cpp b/kode/kwsdl/main.cpp index c793dde79..aff51ec4d 100644 --- a/kode/kwsdl/main.cpp +++ b/kode/kwsdl/main.cpp @@ -27,9 +27,9 @@ #include <kdebug.h> #include <klocale.h> -#include <qdir.h> -#include <qfile.h> -#include <qtimer.h> +#include <tqdir.h> +#include <tqfile.h> +#include <tqtimer.h> static const KCmdLineOptions options[] = { @@ -61,9 +61,9 @@ int main( int argc, char **argv ) KApplication app( false, false ); - QString outputDirectory = QFile::decodeName( args->getOption( "directory" ) ); + TQString outputDirectory = TQFile::decodeName( args->getOption( "directory" ) ); if ( outputDirectory.isEmpty() ) - outputDirectory = QDir::current().path(); + outputDirectory = TQDir::current().path(); KWSDL::Compiler compiler; compiler.setWSDLUrl( args->url( 0 ).path() ); @@ -71,7 +71,7 @@ int main( int argc, char **argv ) if ( args->isSet( "namespace" ) ) compiler.setNameSpace( args->getOption( "namespace" ) ); - QTimer::singleShot( 0, &compiler, SLOT( run() ) ); + TQTimer::singleShot( 0, &compiler, TQT_SLOT( run() ) ); return app.exec(); } |