summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'kode/kwsdl/compiler.h')
-rw-r--r--kode/kwsdl/compiler.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kode/kwsdl/compiler.h b/kode/kwsdl/compiler.h
index 49626ba5..1bb27e1b 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;
};
}