summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/javacodegenerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/javacodegenerator.h')
-rw-r--r--umbrello/umbrello/codegenerators/javacodegenerator.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/umbrello/umbrello/codegenerators/javacodegenerator.h b/umbrello/umbrello/codegenerators/javacodegenerator.h
index 29edb16f..3d94ad5f 100644
--- a/umbrello/umbrello/codegenerators/javacodegenerator.h
+++ b/umbrello/umbrello/codegenerators/javacodegenerator.h
@@ -19,7 +19,7 @@
#ifndef JAVACODEGENERATOR_H
#define JAVACODEGENERATOR_H
-#include <qstring.h>
+#include <tqstring.h>
#include "../codeviewerstate.h"
#include "../codegenerator.h"
#include "../codeblockwithcomments.h"
@@ -47,7 +47,7 @@ public:
* Empty Constructor
*/
JavaCodeGenerator ();
- JavaCodeGenerator (QDomElement & element);
+ JavaCodeGenerator (TQDomElement & element);
/**
* Empty Destructor
@@ -87,11 +87,11 @@ public:
/**
* Get the list variable class name to use. For Java, we have set this to "Vector".
*/
- static QString getListFieldClassName();
+ static TQString getListFieldClassName();
/** Get the editing dialog for this code document
*/
- virtual CodeViewerDialog * getCodeViewerDialog( QWidget* parent, CodeDocument * doc,
+ virtual CodeViewerDialog * getCodeViewerDialog( TQWidget* parent, CodeDocument * doc,
Settings::CodeViewerState state);
// Other methods
@@ -114,19 +114,19 @@ public:
/**
* Adds Java's primitives as datatypes
*/
- virtual QStringList defaultDatatypes();
+ virtual TQStringList defaultDatatypes();
/**
* IF the type is "string" we need to declare it as
* the Java Object "String" (there is no string primative in Java).
* Same thing again for "bool" to "boolean".
*/
- static QString fixTypeName(const QString &string);
+ static TQString fixTypeName(const TQString &string);
/**
* get list of reserved keywords
*/
- virtual const QStringList reservedKeywords() const;
+ virtual const TQStringList reservedKeywords() const;
protected: