summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/pythonwriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/pythonwriter.h')
-rw-r--r--umbrello/umbrello/codegenerators/pythonwriter.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/umbrello/umbrello/codegenerators/pythonwriter.h b/umbrello/umbrello/codegenerators/pythonwriter.h
index f9e5b31a..c9dddc23 100644
--- a/umbrello/umbrello/codegenerators/pythonwriter.h
+++ b/umbrello/umbrello/codegenerators/pythonwriter.h
@@ -50,7 +50,7 @@ public:
/**
* get list of reserved keywords
*/
- virtual const QStringList reservedKeywords() const;
+ virtual const TQStringList reservedKeywords() const;
private:
@@ -60,7 +60,7 @@ private:
* @param c the concept we are generating code for
* @param py output stream for the header file
*/
- void writeAttributes(UMLAttributeList atList, QTextStream &py);
+ void writeAttributes(UMLAttributeList atList, TQTextStream &py);
/**
* write all operations for a given class
@@ -68,7 +68,7 @@ private:
* @param c the concept we are generating code for
* @param h output stream for the header file
*/
- void writeOperations(UMLClassifier *c, QTextStream &h);
+ void writeOperations(UMLClassifier *c, TQTextStream &h);
/**
* write a list of class operations
@@ -77,8 +77,8 @@ private:
* @param opList the list of operations
* @param h output stream for the header file
*/
- void writeOperations(const QString& classname, UMLOperationList &opList,
- QTextStream &h, Access access);
+ void writeOperations(const TQString& classname, UMLOperationList &opList,
+ TQTextStream &h, Access access);
bool m_bNeedPass; ///< True as long as no "pass" has been written
};