summaryrefslogtreecommitdiffstats
path: root/PerlQt/t/ca_i18n.t
diff options
context:
space:
mode:
Diffstat (limited to 'PerlQt/t/ca_i18n.t')
-rw-r--r--PerlQt/t/ca_i18n.t23
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";
-}