summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/pascalwriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/pascalwriter.h')
-rw-r--r--umbrello/umbrello/codegenerators/pascalwriter.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/umbrello/umbrello/codegenerators/pascalwriter.h b/umbrello/umbrello/codegenerators/pascalwriter.h
index bc34d762..0e1f93ca 100644
--- a/umbrello/umbrello/codegenerators/pascalwriter.h
+++ b/umbrello/umbrello/codegenerators/pascalwriter.h
@@ -47,7 +47,7 @@ public:
*/
virtual Uml::Programming_Language getLanguage();
- QStringList defaultDatatypes();
+ TQStringList defaultDatatypes();
/**
* Check whether the given string is a reserved word for the
@@ -55,12 +55,12 @@ public:
*
* @param rPossiblyReservedKeyword The string to check.
*/
- virtual bool isReservedKeyword(const QString & rPossiblyReservedKeyword);
+ virtual bool isReservedKeyword(const TQString & rPossiblyReservedKeyword);
/**
* get list of reserved keywords
*/
- virtual const QStringList reservedKeywords() const;
+ virtual const TQStringList reservedKeywords() const;
private:
@@ -69,16 +69,16 @@ private:
* @param op the class for which we are generating code
* @param ada the stream associated with the output file
*/
- void writeOperation (UMLOperation *op, QTextStream &ada, bool is_comment = false);
+ void writeOperation (UMLOperation *op, TQTextStream &ada, bool is_comment = false);
- void computeAssocTypeAndRole (UMLAssociation *a, QString& typeName, QString& roleName);
+ void computeAssocTypeAndRole (UMLAssociation *a, TQString& typeName, TQString& roleName);
bool isOOClass (UMLClassifier *c);
- QString qualifiedName
+ TQString qualifiedName
(UMLPackage *p, bool withType = false, bool byValue = false);
- static const QString defaultPackageSuffix;
+ static const TQString defaultPackageSuffix;
};