diff options
Diffstat (limited to 'kode/kwsdl/compiler.h')
-rw-r--r-- | kode/kwsdl/compiler.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kode/kwsdl/compiler.h b/kode/kwsdl/compiler.h index 49626ba57..1bb27e1b8 100644 --- a/kode/kwsdl/compiler.h +++ b/kode/kwsdl/compiler.h @@ -22,8 +22,8 @@ #ifndef KWSDL_COMPILER_H #define KWSDL_COMPILER_H -#include <qdom.h> -#include <qobject.h> +#include <tqdom.h> +#include <tqobject.h> #include "parser.h" @@ -36,25 +36,25 @@ class Compiler : public QObject public: Compiler(); - void setWSDLUrl( const QString &wsdlUrl ); - void setOutputDirectory( const QString &outputDirectory ); - void setNameSpace( const QString &nameSpace ); + void setWSDLUrl( const TQString &wsdlUrl ); + void setOutputDirectory( const TQString &outputDirectory ); + void setNameSpace( const TQString &nameSpace ); public slots: void run(); private slots: void download(); - void parse( const QDomElement& ); + void parse( const TQDomElement& ); void create(); private: - QString mWSDLUrl; - QString mOutputDirectory; - QString mNameSpace; + TQString mWSDLUrl; + TQString mOutputDirectory; + TQString mNameSpace; Parser mParser; - QString mWSDLBaseUrl; + TQString mWSDLBaseUrl; }; } |