summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/phpwriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/phpwriter.h')
-rw-r--r--umbrello/umbrello/codegenerators/phpwriter.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/umbrello/umbrello/codegenerators/phpwriter.h b/umbrello/umbrello/codegenerators/phpwriter.h
index a3acb68b..e03699f1 100644
--- a/umbrello/umbrello/codegenerators/phpwriter.h
+++ b/umbrello/umbrello/codegenerators/phpwriter.h
@@ -47,7 +47,7 @@ public:
/**
* get list of reserved keywords
*/
- virtual const QStringList reservedKeywords() const;
+ virtual const TQStringList reservedKeywords() const;
private:
@@ -62,7 +62,7 @@ private:
* @param c the concept we are generating code for
* @param php output stream for the PHP file
*/
- void writeOperations(UMLClassifier *c, QTextStream &php);
+ void writeOperations(UMLClassifier *c, TQTextStream &php);
/**
* write a list of class operations
@@ -71,20 +71,20 @@ private:
* @param opList the list of operations
* @param php output stream for the PHP file
*/
- void writeOperations(QString classname, UMLOperationList &opList,
- QTextStream &php);
+ void writeOperations(TQString classname, UMLOperationList &opList,
+ TQTextStream &php);
/** write all the attributes of a class
* @param c the class we are generating code for
* @param php output stream for the PHP file
*/
- void writeAttributes(UMLClassifier *c, QTextStream &php);
+ void writeAttributes(UMLClassifier *c, TQTextStream &php);
/** write a list of class attributes
* @param atList the list of attributes
* @param php output stream for the PHP file
*/
- void writeAttributes(UMLAttributeList &atList, QTextStream &php);
+ void writeAttributes(UMLAttributeList &atList, TQTextStream &php);
};
#endif //PHPWRITER