summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/examples/qwerty/Main.java
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-05 15:55:57 -0600
committerTimothy Pearson <[email protected]>2011-12-05 15:55:57 -0600
commit9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch)
treec81c34dae2b3b1ea73801bf18a960265dc4207f7 /qtjava/javalib/examples/qwerty/Main.java
parent1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff)
downloadtdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz
tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip
Initial TQt conversion
Diffstat (limited to 'qtjava/javalib/examples/qwerty/Main.java')
-rw-r--r--qtjava/javalib/examples/qwerty/Main.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtjava/javalib/examples/qwerty/Main.java b/qtjava/javalib/examples/qwerty/Main.java
index 67cac77e..81bb4d8a 100644
--- a/qtjava/javalib/examples/qwerty/Main.java
+++ b/qtjava/javalib/examples/qwerty/Main.java
@@ -14,7 +14,7 @@ public class Main {
public static void main(String[] args)
{
- QApplication a = new QApplication( args );
+ TQApplication a = new TQApplication( args );
boolean isSmall = Qt.qApp().desktop().size().width() < 450
@@ -23,7 +23,7 @@ public static void main(String[] args)
int i;
for ( i= 0; i<args.length; i++ ) {
Editor e = new Editor();
- e.setCaption("Qt Example - QWERTY");
+ e.setCaption("Qt Example - TQWERTY");
e.load( args[i] );
if ( isSmall ) {
e.showMaximized();