From 48d4a26399959121f33d2bc3bfe51c7827b654fc Mon Sep 17 00:00:00 2001 From: tpearson Date: Tue, 14 Jun 2011 16:45:05 +0000 Subject: TQt4 port kdevelop This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1236710 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- lib/interfaces/codemodel.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'lib/interfaces/codemodel.h') diff --git a/lib/interfaces/codemodel.h b/lib/interfaces/codemodel.h index 882420b8..f85ff4c3 100644 --- a/lib/interfaces/codemodel.h +++ b/lib/interfaces/codemodel.h @@ -161,7 +161,7 @@ typedef KSharedPtr EnumeratorDom; @class ItemList The list of code model items. This is a type definition: @code typedef TQValueList ItemList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList ItemList; @@ -169,7 +169,7 @@ typedef TQValueList ItemList; @class FileList The list of code model files. This is a type definition: @code typedef TQValueList FileList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList FileList; @@ -177,7 +177,7 @@ typedef TQValueList FileList; @class NamespaceList The list of code model namespaces. This is a type definition: @code typedef TQValueList NamespaceList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList NamespaceList; @@ -185,7 +185,7 @@ typedef TQValueList NamespaceList; @class ClassList The list of code model classes. This is a type definition: @code typedef TQValueList ClassList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList ClassList; @@ -193,7 +193,7 @@ typedef TQValueList ClassList; @class FunctionList The list of code model functions. This is a type definition: @code typedef TQValueList FunctionList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList FunctionList; @@ -201,7 +201,7 @@ typedef TQValueList FunctionList; @class FunctionDefinitionList The list of code model function definitions. This is a type definition: @code typedef TQValueList FunctionDefinitionList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList FunctionDefinitionList; @@ -209,7 +209,7 @@ typedef TQValueList FunctionDefinitionList; @class VariableList The list of code model variables. This is a type definition: @code typedef TQValueList VariableList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList VariableList; @@ -217,7 +217,7 @@ typedef TQValueList VariableList; @class ArgumentList The list of code model arguments. This is a type definition: @code typedef TQValueList ArgumentList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList ArgumentList; @@ -225,7 +225,7 @@ typedef TQValueList ArgumentList; @class EnumList The list of code model enums. This is a type definition: @code typedef TQValueList EnumList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList EnumList; @@ -233,7 +233,7 @@ typedef TQValueList EnumList; @class TypeAliasList The list of code model type aliases. This is a type definition: @code typedef TQValueList TypeAliasList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList TypeAliasList; @@ -241,7 +241,7 @@ typedef TQValueList TypeAliasList; @class EnumeratorList The list of code model enumerators. This is a type definition: @code typedef TQValueList EnumeratorList; @endcode -@sa QValueList +@sa TQValueList */ typedef TQValueList EnumeratorList; @@ -619,7 +619,7 @@ private: class TemplateModelItem { public: - typedef QPair< TQString, TQString > ParamPair; + typedef TQPair< TQString, TQString > ParamPair; typedef TQValueVector< ParamPair > ParamMap; ///The first is the name, and the second the default-parameter, or "" if there is none. virtual const ParamMap& getTemplateParams() { @@ -706,10 +706,10 @@ public: virtual bool isClass() const { return true; } - /**@return The scope of the class. Scope is a string list composed from names of parent classes and namespaces.*/ + /**@return The scope of the class. Scope is a string list composed from names of tqparent classes and namespaces.*/ TQStringList scope() const { return m_scope; } /**Sets the scope of this class. - @param scope The scope - a list of parent classes and namespaces.*/ + @param scope The scope - a list of tqparent classes and namespaces.*/ void setScope( const TQStringList& scope ) { m_scope = scope; } /**@return The list of base class names.*/ @@ -1044,7 +1044,7 @@ protected: NamespaceModel( CodeModel* model ); public: - typedef std::set NamespaceAliasModelList; ///I'm using std-sets here, because Qt-3 has no appropriate replacement + typedef std::set NamespaceAliasModelList; ///I'm using std-sets here, because TQt-3 has no appropriate replacement typedef std::set NamespaceImportModelList; /**A definition of safe pointer to the namespace model.*/ @@ -1256,7 +1256,7 @@ public: virtual bool isFunction() const { return true; } /**@return The scope of the function. Scope is a string list composed - from names of parent functions, classes and namespaces.*/ + from names of tqparent functions, classes and namespaces.*/ TQStringList scope() const { return m_scope; } /**Sets the scope of the function. -- cgit v1.2.3