summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.h')
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.h b/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.h
index b9791372..7248c782 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.h
@@ -13,7 +13,7 @@
#define CPPTREE2UML_H
#include "tree_parser.h"
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include "../../model_utils.h"
// fwd decls
@@ -24,7 +24,7 @@ class UMLPackage;
class CppTree2Uml: public TreeParser
{
public:
- CppTree2Uml( const QString& fileName);
+ CppTree2Uml( const TQString& fileName);
virtual ~CppTree2Uml();
//FileDom file() { return m_file; }
@@ -60,11 +60,11 @@ public:
virtual void parseBaseClause( BaseClauseAST* baseClause, UMLClassifier* klass );
private:
- //NamespaceDom findOrInsertNamespace( NamespaceAST* ast, const QString& name );
+ //NamespaceDom findOrInsertNamespace( NamespaceAST* ast, const TQString& name );
- QString typeOfDeclaration( TypeSpecifierAST* typeSpec, DeclaratorAST* declarator );
- QStringList scopeOfName( NameAST* id, const QStringList& scope );
- QStringList scopeOfDeclarator( DeclaratorAST* d, const QStringList& scope );
+ TQString typeOfDeclaration( TypeSpecifierAST* typeSpec, DeclaratorAST* declarator );
+ TQStringList scopeOfName( NameAST* id, const TQStringList& scope );
+ TQStringList scopeOfDeclarator( DeclaratorAST* d, const TQStringList& scope );
/**
* Flush template parameters pending in m_templateParams to the klass.
*/
@@ -72,15 +72,15 @@ private:
private:
//FileDom m_file;
- QString m_fileName;
- QStringList m_currentScope;
+ TQString m_fileName;
+ TQStringList m_currentScope;
Uml::Visibility m_currentAccess;
bool m_inSlots;
bool m_inSignals;
int m_anon;
bool m_inStorageSpec;
bool m_inTypedef;
- QString m_comment;
+ TQString m_comment;
Model_Utils::NameAndType_List m_templateParams;
DeclaratorAST* m_currentDeclarator;