summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/qtjava/QDomComment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/qtjava/QDomComment.cpp')
-rw-r--r--qtjava/javalib/qtjava/QDomComment.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/qtjava/javalib/qtjava/QDomComment.cpp b/qtjava/javalib/qtjava/QDomComment.cpp
index acf2691c..b7d343e6 100644
--- a/qtjava/javalib/qtjava/QDomComment.cpp
+++ b/qtjava/javalib/qtjava/QDomComment.cpp
@@ -2,14 +2,14 @@
#include <tqdom.h>
#include <qtjava/QtSupport.h>
-#include <qtjava/QDomComment.h>
+#include <qtjava/TQDomComment.h>
-class QDomCommentJBridge : public QDomComment
+class TQDomCommentJBridge : public TQDomComment
{
public:
- QDomCommentJBridge() : TQDomComment() {};
- QDomCommentJBridge(const TQDomComment& arg1) : TQDomComment(arg1) {};
- ~QDomCommentJBridge() {QtSupport::qtKeyDeleted(this);}
+ TQDomCommentJBridge() : TTQDomComment() {};
+ TQDomCommentJBridge(const TTQDomComment& arg1) : TTQDomComment(arg1) {};
+ ~TQDomCommentJBridge() {QtSupport::qtKeyDeleted(this);}
};
JNIEXPORT void JNICALL
@@ -23,7 +23,7 @@ JNIEXPORT void JNICALL
Java_org_kde_qt_QDomComment_finalize(JNIEnv* env, jobject obj)
{
if (QtSupport::allocatedInJavaWorld(env, obj)) {
- delete (TQDomComment*)QtSupport::getQt(env, obj);
+ delete (TTQDomComment*)QtSupport::getQt(env, obj);
QtSupport::setQt(env, obj, 0);
}
return;
@@ -32,7 +32,7 @@ Java_org_kde_qt_QDomComment_finalize(JNIEnv* env, jobject obj)
JNIEXPORT jboolean JNICALL
Java_org_kde_qt_QDomComment_isComment(JNIEnv* env, jobject obj)
{
- jboolean xret = (jboolean) ((TQDomComment*) QtSupport::getQt(env, obj))->isComment();
+ jboolean xret = (jboolean) ((TTQDomComment*) QtSupport::getQt(env, obj))->isComment();
return xret;
}
@@ -43,20 +43,20 @@ Java_org_kde_qt_QDomComment_isDisposed(JNIEnv* env, jobject obj)
}
JNIEXPORT void JNICALL
-Java_org_kde_qt_QDomComment_newQDomComment__(JNIEnv* env, jobject obj)
+Java_org_kde_qt_QDomComment_newTQDomComment__(JNIEnv* env, jobject obj)
{
if (QtSupport::getQt(env, obj) == 0) {
- QtSupport::setQt(env, obj, new QDomCommentJBridge());
+ QtSupport::setQt(env, obj, new TQDomCommentJBridge());
QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
}
return;
}
JNIEXPORT void JNICALL
-Java_org_kde_qt_QDomComment_newQDomComment__Lorg_kde_qt_QDomComment_2(JNIEnv* env, jobject obj, jobject x)
+Java_org_kde_qt_QDomComment_newTQDomComment__Lorg_kde_qt_QDomComment_2(JNIEnv* env, jobject obj, jobject x)
{
if (QtSupport::getQt(env, obj) == 0) {
- QtSupport::setQt(env, obj, new QDomCommentJBridge((const TQDomComment&)*(const TQDomComment*) QtSupport::getQt(env, x)));
+ QtSupport::setQt(env, obj, new TQDomCommentJBridge((const TTQDomComment&)*(const TTQDomComment*) QtSupport::getQt(env, x)));
QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
}
return;
@@ -65,7 +65,7 @@ Java_org_kde_qt_QDomComment_newQDomComment__Lorg_kde_qt_QDomComment_2(JNIEnv* en
JNIEXPORT jint JNICALL
Java_org_kde_qt_QDomComment_nodeType(JNIEnv* env, jobject obj)
{
- jint xret = (jint) ((TQDomComment*) QtSupport::getQt(env, obj))->nodeType();
+ jint xret = (jint) ((TTQDomComment*) QtSupport::getQt(env, obj))->nodeType();
return xret;
}