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/cpp/simpletypenamespace.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'languages/cpp/simpletypenamespace.h') diff --git a/languages/cpp/simpletypenamespace.h b/languages/cpp/simpletypenamespace.h index 169c4548..b465cfb6 100644 --- a/languages/cpp/simpletypenamespace.h +++ b/languages/cpp/simpletypenamespace.h @@ -62,9 +62,9 @@ class SimpleTypeNamespace : public SimpleTypeImpl { typedef std::multiset ImportList; - SimpleTypeNamespace( const QStringList& fakeScope, const QStringList& realScope ); + SimpleTypeNamespace( const TQStringList& fakeScope, const TQStringList& realScope ); - SimpleTypeNamespace( const QStringList& fakeScope ); + SimpleTypeNamespace( const TQStringList& fakeScope ); SimpleTypeNamespace( SimpleTypeNamespace* ns ); @@ -87,13 +87,13 @@ class SimpleTypeNamespace : public SimpleTypeImpl { /**Takes a map of multiple aliases in form "A=B;C=D;....;" similar to the C++ "namespace A=B;" statement * @param files Set of files that must be included for this alias-map to be active. If the set is empty, the alias will be used globally. */ - void addAliases( QString map, const IncludeFiles& files = IncludeFiles() ); + void addAliases( TQString map, const IncludeFiles& files = IncludeFiles() ); private: SlaveMap m_activeSlaves; size_t m_currentSlaveId; HashedStringSetGroup m_activeSlaveGroups; - typedef QMap AliasMap; + typedef TQMap AliasMap; AliasMap m_aliases; //Inserts all aliases necessary fo handling a request using the given IncludeFiles @@ -106,12 +106,12 @@ class SimpleTypeNamespace : public SimpleTypeImpl { friend class NamespaceBuildInfo; struct NamespaceBuildInfo : public TypeBuildInfo { - QStringList m_fakeScope; + TQStringList m_fakeScope; ImportList m_imports; TypePointer m_built; - NamespaceBuildInfo( QStringList fakeScope, const ImportList& imports ) { + NamespaceBuildInfo( TQStringList fakeScope, const ImportList& imports ) { m_fakeScope = fakeScope; m_imports = imports; } @@ -139,7 +139,7 @@ class SimpleTypeNamespace : public SimpleTypeImpl { virtual MemberInfo findMember( TypeDesc name, MemberInfo::MemberType type = MemberInfo::AllTypes ); - virtual QValueList getMemberClasses( const TypeDesc& name ) ; + virtual TQValueList getMemberClasses( const TypeDesc& name ) ; private: struct HashedStringHasher { @@ -150,9 +150,9 @@ class SimpleTypeNamespace : public SimpleTypeImpl { //Maps from HashedStringSet to the count of slaves when the item was cached, and the SlaveList // typedef __gnu_cxx::hash_map, HashedStringHasher> SlavesCache; //SlavesCache m_slavesCache; - QValueList getMemberClasses( const TypeDesc& name, std::set& ignore ) ; + TQValueList getMemberClasses( const TypeDesc& name, std::set& ignore ) ; - MemberInfo setupMemberInfo( const QStringList& subName, const ImportList& imports ); + MemberInfo setupMemberInfo( const TQStringList& subName, const ImportList& imports ); //TypePointer locateNamespace( const TypeDesc& alias ); -- cgit v1.2.1