summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/rubywriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/rubywriter.h')
-rw-r--r--umbrello/umbrello/codegenerators/rubywriter.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/umbrello/umbrello/codegenerators/rubywriter.h b/umbrello/umbrello/codegenerators/rubywriter.h
index 8f1547ad..c1a69775 100644
--- a/umbrello/umbrello/codegenerators/rubywriter.h
+++ b/umbrello/umbrello/codegenerators/rubywriter.h
@@ -23,7 +23,7 @@
#include "../umloperationlist.h"
#include "../umlattributelist.h"
-#include <qstringlist.h>
+#include <tqstringlist.h>
class ClassifierInfo;
@@ -52,7 +52,7 @@ public:
/**
* get list of reserved keywords
*/
- virtual const QStringList reservedKeywords() const;
+ virtual const TQStringList reservedKeywords() const;
private:
/**
@@ -61,7 +61,7 @@ private:
*
* @param cppType the C++ type to be converted
*/
- QString cppToRubyType(const QString &cppType);
+ TQString cppToRubyType(const TQString &cppType);
/**
* Convert C++ names such as 'm_foobar' or pFoobar to
@@ -69,22 +69,22 @@ private:
*
* @param cppName the C++ name to be converted
*/
- QString cppToRubyName(const QString &cppName);
+ TQString cppToRubyName(const TQString &cppName);
/**
* calls @ref writeSingleAttributeAccessorMethods() on each of the attributes in attribs list.
*/
void writeAttributeMethods(UMLAttributeList *attribs,
- Uml::Visibility visibility, QTextStream &stream);
+ Uml::Visibility visibility, TQTextStream &stream);
/**
* write all method declarations, for attributes and associations
* for the given permitted scope.
*/
- void writeSingleAttributeAccessorMethods(const QString &fieldName,
- const QString &description,
- QTextStream &h);
+ void writeSingleAttributeAccessorMethods(const TQString &fieldName,
+ const TQString &description,
+ TQTextStream &h);
/**
* write all operations for a given class
@@ -92,7 +92,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
@@ -101,8 +101,8 @@ private:
* @param opList the list of operations
* @param h output stream for the header file
*/
- void writeOperations(const QString &classname, UMLOperationList &opList,
- Uml::Visibility permitScope, QTextStream &h);
+ void writeOperations(const TQString &classname, UMLOperationList &opList,
+ Uml::Visibility permitScope, TQTextStream &h);
/**
* Summary information about current classifier.