summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/perlwriter.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
commit4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch)
treeb0a7cd1c184f0003c0292eb416ed27f674f9cc43 /umbrello/umbrello/codegenerators/perlwriter.h
parent1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff)
downloadtdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz
tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'umbrello/umbrello/codegenerators/perlwriter.h')
-rw-r--r--umbrello/umbrello/codegenerators/perlwriter.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/umbrello/umbrello/codegenerators/perlwriter.h b/umbrello/umbrello/codegenerators/perlwriter.h
index 9dac4e56..4d5fdabd 100644
--- a/umbrello/umbrello/codegenerators/perlwriter.h
+++ b/umbrello/umbrello/codegenerators/perlwriter.h
@@ -51,9 +51,9 @@ public:
/**
* get list of reserved keywords
*/
- virtual const QStringList reservedKeywords() const;
+ virtual const TQStringList reservedKeywords() const;
- QStringList defaultDatatypes();
+ TQStringList defaultDatatypes();
private:
@@ -69,7 +69,7 @@ private:
* @param c the concept we are generating code for
* @param perl output stream for the Perl file
*/
- void writeOperations(UMLClassifier *c, QTextStream &perl);
+ void writeOperations(UMLClassifier *c, TQTextStream &perl);
/**
* write a list of class operations
@@ -78,23 +78,23 @@ private:
* @param opList the list of operations
* @param perl output stream for the Perl file
*/
- void writeOperations(const QString &classname, UMLOperationList &opList,
- QTextStream &perl);
+ void writeOperations(const TQString &classname, UMLOperationList &opList,
+ TQTextStream &perl);
/** write all the attributes of a class
* @param c the class we are generating code for
* @param perl output stream for the Perl file
*/
- void writeAttributes(UMLClassifier *c, QTextStream &perl);
+ void writeAttributes(UMLClassifier *c, TQTextStream &perl);
/** write a list of class attributes
* @param atList the list of attributes
* @param perl output stream for the Perl file
*/
- void writeAttributes(UMLAttributeList &atList, QTextStream &perl);
+ void writeAttributes(UMLAttributeList &atList, TQTextStream &perl);
- bool GetUseStatements(UMLClassifier *c, QString &Ret,
- QString &ThisPkgName);
+ bool GetUseStatements(UMLClassifier *c, TQString &Ret,
+ TQString &ThisPkgName);
};