diff options
Diffstat (limited to 'languages/php/phpconfigdata.h')
-rw-r--r-- | languages/php/phpconfigdata.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/languages/php/phpconfigdata.h b/languages/php/phpconfigdata.h index 0c7a49eb..49c49da8 100644 --- a/languages/php/phpconfigdata.h +++ b/languages/php/phpconfigdata.h @@ -20,15 +20,15 @@ #ifndef PHPCONFIGDATA_H #define PHPCONFIGDATA_H -#include <qstring.h> -#include <qdom.h> -#include <qobject.h> +#include <tqstring.h> +#include <tqdom.h> +#include <tqobject.h> /** *@author Sandy Meier */ -class PHPConfigData : public QObject { +class PHPConfigData : public TQObject { Q_OBJECT signals: @@ -38,7 +38,7 @@ public: enum InvocationMode {Web=1,Shell=2}; enum StartupFileMode {Current=1,Default=2}; - PHPConfigData(QDomDocument* document); + PHPConfigData(TQDomDocument* document); ~PHPConfigData(); /** returns true if the configuration is ok, false if something is missing @@ -57,43 +57,43 @@ public: } // web - QString getWebURL() { + TQString getWebURL() { return webURL; } - void setWebURL(QString weburl) { + void setWebURL(TQString weburl) { webURL = weburl; } // shell - QString getPHPExecPath() { + TQString getPHPExecPath() { return phpExePath; } - void setPHPExePath(QString path) { + void setPHPExePath(TQString path) { phpExePath = path; } // config - QString getPHPIniPath() { + TQString getPHPIniPath() { return phpIniPath; } - void setPHPIniPath(QString path) { + void setPHPIniPath(TQString path) { phpIniPath = path; } // options - QString getPHPIncludePath() { + TQString getPHPIncludePath() { return phpIncludePath; } - void setPHPIncludePath(QString path) { + void setPHPIncludePath(TQString path) { phpIncludePath = path; } - QString getStartupFile() { + TQString getStartupFile() { return phpStartupFile; } - void setStartupFile(QString defaultFile) { + void setStartupFile(TQString defaultFile) { phpStartupFile = defaultFile; } @@ -131,19 +131,19 @@ public: } private: - QDomDocument* document; + TQDomDocument* document; InvocationMode invocationMode; // web - QString webURL; + TQString webURL; // shell - QString phpExePath; - QString phpIniPath; - QString phpStartupFile; + TQString phpExePath; + TQString phpIniPath; + TQString phpStartupFile; // options - QString phpIncludePath; - QString phpDefaultFile; + TQString phpIncludePath; + TQString phpDefaultFile; StartupFileMode phpStartupFileMode; // code help |