diff options
Diffstat (limited to 'languages/php/phpparser.h')
-rw-r--r-- | languages/php/phpparser.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/languages/php/phpparser.h b/languages/php/phpparser.h index c5d7e378..24687ea3 100644 --- a/languages/php/phpparser.h +++ b/languages/php/phpparser.h @@ -19,19 +19,19 @@ #ifndef PHPPARSER_H #define PHPPARSER_H -#include <qthread.h> +#include <tqthread.h> #if QT_VERSION < 0x030100 #include <kdevmutex.h> #else -#include <qmutex.h> +#include <tqmutex.h> #endif #include <codemodel.h> -#include <qwaitcondition.h> -#include <qstring.h> -#include <qstringlist.h> +#include <tqwaitcondition.h> +#include <tqstring.h> +#include <tqstringlist.h> #include "phpfile.h" @@ -42,16 +42,16 @@ class PHPSupportPart; *@author Sandy Meier */ -class PHPParser: public QThread { +class PHPParser: public TQThread { public: PHPParser(PHPSupportPart *part); ~PHPParser(); - void addFile( const QString& fileName ); - bool hasFile( const QString& fileName ); - void reparseFile( const QString& fileName ); - void removeFile( const QString& fileName ); + void addFile( const TQString& fileName ); + bool hasFile( const TQString& fileName ); + void reparseFile( const TQString& fileName ); + void removeFile( const TQString& fileName ); void removeAllFiles(); void run(); @@ -63,10 +63,10 @@ private: KDevCore* m_core; PHPSupportPart* m_part; - QMutex m_mutex; - QWaitCondition m_canParse; + TQMutex m_mutex; + TQWaitCondition m_canParse; bool m_close; - QMap<QString, PHPFile*> m_files; + TQMap<TQString, PHPFile*> m_files; }; |