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/QVBox.java | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QVBox.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QVBox.java | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/qtjava/javalib/org/kde/qt/QVBox.java b/qtjava/javalib/org/kde/qt/QVBox.java index 6f558cfe..10aa69dd 100644 --- a/qtjava/javalib/org/kde/qt/QVBox.java +++ b/qtjava/javalib/org/kde/qt/QVBox.java @@ -3,30 +3,30 @@ package org.kde.qt; import org.kde.qt.Qt; -public class QVBox extends QHBox { - protected QVBox(Class dummy){super((Class) null);} - public native QMetaObject metaObject(); +public class TQVBox extends TQHBox { + protected TQVBox(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); public native String className(); - public QVBox(QWidget parent, String name, int f) { + public TQVBox(TQWidget parent, String name, int f) { super((Class) null); - newQVBox(parent,name,f); + newTQVBox(parent,name,f); } - private native void newQVBox(QWidget parent, String name, int f); - public QVBox(QWidget parent, String name) { + private native void newTQVBox(TQWidget parent, String name, int f); + public TQVBox(TQWidget parent, String name) { super((Class) null); - newQVBox(parent,name); + newTQVBox(parent,name); } - private native void newQVBox(QWidget parent, String name); - public QVBox(QWidget parent) { + private native void newTQVBox(TQWidget parent, String name); + public TQVBox(TQWidget parent) { super((Class) null); - newQVBox(parent); + newTQVBox(parent); } - private native void newQVBox(QWidget parent); - public QVBox() { + private native void newTQVBox(TQWidget parent); + public TQVBox() { super((Class) null); - newQVBox(); + newTQVBox(); } - private native void newQVBox(); + private native void newTQVBox(); public static native String tr(String arg1, String arg2); public static native String tr(String arg1); /** Deletes the wrapped C++ instance */ |