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/tutorial/t5 | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'qtjava/javalib/tutorial/t5')
-rw-r--r-- | qtjava/javalib/tutorial/t5/Tut5.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qtjava/javalib/tutorial/t5/Tut5.java b/qtjava/javalib/tutorial/t5/Tut5.java index e0de9ac5..7b3fa60a 100644 --- a/qtjava/javalib/tutorial/t5/Tut5.java +++ b/qtjava/javalib/tutorial/t5/Tut5.java @@ -1,15 +1,15 @@ import org.kde.qt.*; -public class Tut5 extends QVBox { +public class Tut5 extends TQVBox { public Tut5() { - QPushButton quit = new QPushButton("Quit", this, "quit"); - quit.setFont(new QFont("Times", 18, QFont.Bold, false)); + TQPushButton quit = new TQPushButton("Quit", this, "quit"); + quit.setFont(new TQFont("Times", 18, TQFont.Bold, false)); connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()")); - QLCDNumber lcd = new QLCDNumber(2, this, "lcd"); + TQLCDNumber lcd = new TQLCDNumber(2, this, "lcd"); - QSlider slider = new QSlider(Horizontal, this, "slider"); + TQSlider slider = new TQSlider(Horizontal, this, "slider"); slider.setRange(0, 99); slider.setValue(0); @@ -17,7 +17,7 @@ public class Tut5 extends QVBox { } public static void main(String[] args) { - QApplication a = new QApplication(args); + TQApplication a = new TQApplication(args); Tut5 w = new Tut5(); a.setMainWidget(w); |