diff options
author | Timothy Pearson <[email protected]> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /qtjava/javalib/org/kde/qt/QListBoxText.java | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QListBoxText.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QListBoxText.java | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/qtjava/javalib/org/kde/qt/QListBoxText.java b/qtjava/javalib/org/kde/qt/QListBoxText.java index 4e256b43..6cf9d2fe 100644 --- a/qtjava/javalib/org/kde/qt/QListBoxText.java +++ b/qtjava/javalib/org/kde/qt/QListBoxText.java @@ -3,37 +3,37 @@ package org.kde.qt; import org.kde.qt.Qt; -public class QListBoxText extends QListBoxItem { - protected QListBoxText(Class dummy){super((Class) null);} - public QListBoxText(QListBox listbox, String text) { +public class TQListBoxText extends TQListBoxItem { + protected TQListBoxText(Class dummy){super((Class) null);} + public TQListBoxText(TQListBox listbox, String text) { super((Class) null); - newQListBoxText(listbox,text); + newTQListBoxText(listbox,text); } - private native void newQListBoxText(QListBox listbox, String text); - public QListBoxText(QListBox listbox) { + private native void newTQListBoxText(TQListBox listbox, String text); + public TQListBoxText(TQListBox listbox) { super((Class) null); - newQListBoxText(listbox); + newTQListBoxText(listbox); } - private native void newQListBoxText(QListBox listbox); - public QListBoxText(String text) { + private native void newTQListBoxText(TQListBox listbox); + public TQListBoxText(String text) { super((Class) null); - newQListBoxText(text); + newTQListBoxText(text); } - private native void newQListBoxText(String text); - public QListBoxText() { + private native void newTQListBoxText(String text); + public TQListBoxText() { super((Class) null); - newQListBoxText(); + newTQListBoxText(); } - private native void newQListBoxText(); - public QListBoxText(QListBox listbox, String text, QListBoxItem after) { + private native void newTQListBoxText(); + public TQListBoxText(TQListBox listbox, String text, TQListBoxItem after) { super((Class) null); - newQListBoxText(listbox,text,after); + newTQListBoxText(listbox,text,after); } - private native void newQListBoxText(QListBox listbox, String text, QListBoxItem after); - public native int height(QListBox arg1); - public native int width(QListBox arg1); + private native void newTQListBoxText(TQListBox listbox, String text, TQListBoxItem after); + public native int height(TQListBox arg1); + public native int width(TQListBox arg1); public native int rtti(); - protected native void paint(QPainter arg1); + protected native void paint(TQPainter arg1); /** Deletes the wrapped C++ instance */ protected native void finalize() throws InternalError; /** Delete the wrapped C++ instance ahead of finalize() */ |