summaryrefslogtreecommitdiffstats
path: root/languages/cpp/cppcodecompletionconfig.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
commitd6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch)
treed109539636691d7b03036ca1c0ed29dbae6577cf /languages/cpp/cppcodecompletionconfig.h
parent3331a47a9cad24795c7440ee8107143ce444ef34 (diff)
downloadtdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz
tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'languages/cpp/cppcodecompletionconfig.h')
-rw-r--r--languages/cpp/cppcodecompletionconfig.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/languages/cpp/cppcodecompletionconfig.h b/languages/cpp/cppcodecompletionconfig.h
index 13b23ccf..4fbf2d1b 100644
--- a/languages/cpp/cppcodecompletionconfig.h
+++ b/languages/cpp/cppcodecompletionconfig.h
@@ -13,7 +13,7 @@
#ifndef CPPCODECOMPLETIONCONFIG_H
#define CPPCODECOMPLETIONCONFIG_H
-#include <qobject.h>
+#include <tqobject.h>
class CppSupportPart;
class QDomDocument;
@@ -26,7 +26,7 @@ class CppCodeCompletionConfig : public QObject
{
Q_OBJECT
public:
- CppCodeCompletionConfig( CppSupportPart* part, QDomDocument* dom );
+ CppCodeCompletionConfig( CppSupportPart* part, TQDomDocument* dom );
virtual ~CppCodeCompletionConfig();
// bool includeGlobalFunctions() const
@@ -93,7 +93,7 @@ public:
}
///Additional include-paths defined by the user
- void setCustomIncludePaths(QString str) {
+ void setCustomIncludePaths(TQString str) {
m_includePaths = str;
}
@@ -116,7 +116,7 @@ public:
}
///Additional include-paths defined by the user
- QString customIncludePaths() const {
+ TQString customIncludePaths() const {
return m_includePaths;
}
@@ -160,7 +160,7 @@ public:
return m_statusBarTypeEvaluation;
}
- QString namespaceAliases() const {
+ TQString namespaceAliases() const {
///used
return m_namespaceAliases;
}
@@ -201,7 +201,7 @@ public:
m_statusBarTypeEvaluation = b;
}
- void setNamespaceAliases( QString n ) {
+ void setNamespaceAliases( TQString n ) {
///used
m_namespaceAliases = n;
}
@@ -274,7 +274,7 @@ private:
private:
CppSupportPart* m_part;
- QDomDocument* m_dom;
+ TQDomDocument* m_dom;
/* bool m_includeGlobalFunctions;
bool m_includeTypes;
bool m_includeEnums;
@@ -292,18 +292,18 @@ private:
bool m_alwaysIncludeNamespaces;
bool m_alwaysParseInBackground;
bool m_usePermanentCaching;
- QString m_includePaths;
+ TQString m_includePaths;
bool m_showOnlyAccessibleItems;
CompletionBoxItemOrder m_completionBoxItemOrder;
bool m_showEvaluationContextMenu;
bool m_showCommentWithArgumentHint;
bool m_statusBarTypeEvaluation;
- QString m_namespaceAliases;
+ TQString m_namespaceAliases;
bool m_processPrimaryTypes;
bool m_processFunctionArguments;
- static QString defaultPath;
+ static TQString defaultPath;
};
#endif