diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /qtjava/javalib/org/kde/qt/QVGroupBox.java | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QVGroupBox.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QVGroupBox.java | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/qtjava/javalib/org/kde/qt/QVGroupBox.java b/qtjava/javalib/org/kde/qt/QVGroupBox.java index 213872f2..6767a211 100644 --- a/qtjava/javalib/org/kde/qt/QVGroupBox.java +++ b/qtjava/javalib/org/kde/qt/QVGroupBox.java @@ -3,40 +3,40 @@ package org.kde.qt; import org.kde.qt.Qt; -public class QVGroupBox extends QGroupBox { - protected QVGroupBox(Class dummy){super((Class) null);} - public native QMetaObject metaObject(); +public class TQVGroupBox extends TQGroupBox { + protected TQVGroupBox(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); public native String className(); - public QVGroupBox(QWidget parent, String name) { + public TQVGroupBox(TQWidget parent, String name) { super((Class) null); - newQVGroupBox(parent,name); + newTQVGroupBox(parent,name); } - private native void newQVGroupBox(QWidget parent, String name); - public QVGroupBox(QWidget parent) { + private native void newTQVGroupBox(TQWidget parent, String name); + public TQVGroupBox(TQWidget parent) { super((Class) null); - newQVGroupBox(parent); + newTQVGroupBox(parent); } - private native void newQVGroupBox(QWidget parent); - public QVGroupBox() { + private native void newTQVGroupBox(TQWidget parent); + public TQVGroupBox() { super((Class) null); - newQVGroupBox(); + newTQVGroupBox(); } - private native void newQVGroupBox(); - public QVGroupBox(String title, QWidget parent, String name) { + private native void newTQVGroupBox(); + public TQVGroupBox(String title, TQWidget parent, String name) { super((Class) null); - newQVGroupBox(title,parent,name); + newTQVGroupBox(title,parent,name); } - private native void newQVGroupBox(String title, QWidget parent, String name); - public QVGroupBox(String title, QWidget parent) { + private native void newTQVGroupBox(String title, TQWidget parent, String name); + public TQVGroupBox(String title, TQWidget parent) { super((Class) null); - newQVGroupBox(title,parent); + newTQVGroupBox(title,parent); } - private native void newQVGroupBox(String title, QWidget parent); - public QVGroupBox(String title) { + private native void newTQVGroupBox(String title, TQWidget parent); + public TQVGroupBox(String title) { super((Class) null); - newQVGroupBox(title); + newTQVGroupBox(title); } - private native void newQVGroupBox(String title); + private native void newTQVGroupBox(String title); public static native String tr(String arg1, String arg2); public static native String tr(String arg1); /** Deletes the wrapped C++ instance */ |