diff options
Diffstat (limited to 'PerlQt/t/ca_i18n.t')
-rw-r--r-- | PerlQt/t/ca_i18n.t | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/PerlQt/t/ca_i18n.t b/PerlQt/t/ca_i18n.t index fddbff7..1e71c29 100644 --- a/PerlQt/t/ca_i18n.t +++ b/PerlQt/t/ca_i18n.t @@ -1,21 +1,21 @@ BEGIN { print "1..1\n" } -use Qt; +use TQt; -$a = Qt::Application(); -$pb=Qt::PushButton("Foooo", undef); +$a = TQt::Application(); +$pb=TQt::PushButton("Foooo", undef); { use bytes; $pb->setText( "élégant" ); $b = $pb->text(); - $b2 = Qt::Widget::tr("élégant"); + $b2 = TQt::Widget::tr("élégant"); } $c = $pb->text(); -$c2= Qt::Widget::tr("élégant"); +$c2= TQt::Widget::tr("élégant"); { use bytes; |