diff options
author | Timothy Pearson <[email protected]> | 2012-01-01 18:29:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-01 18:29:30 -0600 |
commit | b2af005db21bd8fd068cb79b2ae700953128af2c (patch) | |
tree | abd0ed633726bf0bbecb57d30e92836c31e02695 /PerlQt/t/ca_i18n.t | |
parent | c1b9383f2032d82db5eb8918dca885e37a901dde (diff) | |
download | libtqt-perl-b2af005db21bd8fd068cb79b2ae700953128af2c.tar.gz libtqt-perl-b2af005db21bd8fd068cb79b2ae700953128af2c.zip |
Move PerlQt
Diffstat (limited to 'PerlQt/t/ca_i18n.t')
-rw-r--r-- | PerlQt/t/ca_i18n.t | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/PerlQt/t/ca_i18n.t b/PerlQt/t/ca_i18n.t deleted file mode 100644 index 1e71c29..0000000 --- a/PerlQt/t/ca_i18n.t +++ /dev/null @@ -1,23 +0,0 @@ -BEGIN { print "1..1\n" } - -use TQt; - -$a = TQt::Application(); -$pb=TQt::PushButton("Foooo", undef); - -{ - use bytes; - $pb->setText( "�l�gant" ); - - $b = $pb->text(); - $b2 = TQt::Widget::tr("�l�gant"); -} - - -$c = $pb->text(); -$c2= TQt::Widget::tr("�l�gant"); - -{ - use bytes; - print +($b ne $c and $b2 ne $c2) ? "ok 1\n":"not ok\n"; -} |