From d6f8bbb45b267065a6907e71ff9c98bb6d161241 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:56:07 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- languages/php/phpcodecompletion.h | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'languages/php/phpcodecompletion.h') diff --git a/languages/php/phpcodecompletion.h b/languages/php/phpcodecompletion.h index 41d79934..505bdcbd 100644 --- a/languages/php/phpcodecompletion.h +++ b/languages/php/phpcodecompletion.h @@ -23,7 +23,7 @@ #include -#include +#include #include #include @@ -42,10 +42,10 @@ class PHPConfigData; class FunctionCompletionEntry : public KTextEditor::CompletionEntry { public: - QString prototype; + TQString prototype; }; -class PHPCodeCompletion : public QObject { +class PHPCodeCompletion : public TQObject { Q_OBJECT public: @@ -61,29 +61,29 @@ protected slots: void completionBoxHided(); protected: - bool showCompletionBox(QValueList list, unsigned long max); + bool showCompletionBox(TQValueList list, unsigned long max); - bool checkForVariable(QString line, int col); - bool checkForStaticFunction(QString line, int col); - bool checkForNew(QString line, int col); - bool checkForExtends(QString line, int col); - bool checkForGlobalFunction(QString line, int col); + bool checkForVariable(TQString line, int col); + bool checkForStaticFunction(TQString line, int col); + bool checkForNew(TQString line, int col); + bool checkForExtends(TQString line, int col); + bool checkForGlobalFunction(TQString line, int col); - bool checkForArgHint(QString line, int col); + bool checkForArgHint(TQString line, int col); - QValueList getClasses(QString name); - QValueList getFunctionsAndVars(QString classname, QString str); - QStringList getArguments(QString classname, QString function); - QString getCurrentClassName(); - QString getClassName(QString varName, QString classname); - QValueList getClassByName(QString classname); + TQValueList getClasses(TQString name); + TQValueList getFunctionsAndVars(TQString classname, TQString str); + TQStringList getArguments(TQString classname, TQString function); + TQString getCurrentClassName(); + TQString getClassName(TQString varName, TQString classname); + TQValueList getClassByName(TQString classname); void readGlobalPHPFunctionsFile(); - void setStatusBar(QString expr, QString type); + void setStatusBar(TQString expr, TQString type); private: int m_currentLine; - QValueList m_globalFunctions; + TQValueList m_globalFunctions; PHPSupportPart* m_phpSupport; PHPConfigData* m_config; @@ -97,7 +97,7 @@ protected: KTextEditor::ViewCursorInterface *m_cursorInterface; KTextEditor::SelectionInterface *m_selectionInterface; - QString findDeclaration(QString name, int line = -1); + TQString findDeclaration(TQString name, int line = -1); }; #endif -- cgit v1.2.3