summaryrefslogtreecommitdiffstats
path: root/kjsembed/tests/test_qcanvas.js
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 15:55:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 15:55:57 -0600
commit9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch)
treec81c34dae2b3b1ea73801bf18a960265dc4207f7 /kjsembed/tests/test_qcanvas.js
parent1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff)
downloadtdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz
tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip
Initial TQt conversion
Diffstat (limited to 'kjsembed/tests/test_qcanvas.js')
-rw-r--r--kjsembed/tests/test_qcanvas.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/kjsembed/tests/test_qcanvas.js b/kjsembed/tests/test_qcanvas.js
index c5ffd7f9..4e17a5ce 100644
--- a/kjsembed/tests/test_qcanvas.js
+++ b/kjsembed/tests/test_qcanvas.js
@@ -1,24 +1,24 @@
#!/usr/bin/env kjscmd
-c = new QCanvas();
+c = new TQCanvas();
-item = new QCanvasText( '<font="blue">hi</font>', c );
+item = new TQCanvasText( '<font="blue">hi</font>', c );
item.move( 50, 50 );
item.show();
-item = new QCanvasText( '<font="blue">hi</font>', c );
+item = new TQCanvasText( '<font="blue">hi</font>', c );
item.move( 150, 50 );
item.show();
-item = new QCanvasText( '<font="blue">hixxx</font>', c );
+item = new TQCanvasText( '<font="blue">hixxx</font>', c );
item.move( 50, 150 );
item.show();
-item = new QCanvasText( '<font="blue">hixxxxxxx</font>', c );
+item = new TQCanvasText( '<font="blue">hixxxxxxx</font>', c );
item.move( 150, 150 );
item.show();
-view = new QCanvasView();
+view = new TQCanvasView();
view.setCanvas( c );
view.update();