diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-07-30 11:05:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-07-30 11:05:07 +0000 |
commit | 9ba45465ec57f6a03417e810c3defec080579355 (patch) | |
tree | 4ce2e0e651fac1858039fc16ecdc2a2c9e3acd63 | |
parent | 9ef4e7bfab02659851da4d104d15a67d4b8aaaf9 (diff) | |
download | drakx-9ba45465ec57f6a03417e810c3defec080579355.tar drakx-9ba45465ec57f6a03417e810c3defec080579355.tar.gz drakx-9ba45465ec57f6a03417e810c3defec080579355.tar.bz2 drakx-9ba45465ec57f6a03417e810c3defec080579355.tar.xz drakx-9ba45465ec57f6a03417e810c3defec080579355.zip |
- move from perl-GTK2 to perl-Gtk2
- fix an old weird typo
-rw-r--r-- | perl-install/Xconfig/test.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/Xconfig/test.pm b/perl-install/Xconfig/test.pm index d14cca755..777066420 100644 --- a/perl-install/Xconfig/test.pm +++ b/perl-install/Xconfig/test.pm @@ -103,7 +103,6 @@ sub test { $::noShadow = 1; open(my $F, "|perl 2>/dev/null"); - print $F printf $F q( use lib qw(%s); BEGIN { $::no_ugtk_init = 1 } @@ -120,7 +119,7 @@ sub test { lang::bindtextdomain(); $ENV{DISPLAY} = ":9"; - Gtk2->init([]); + Gtk2->init; gtkset_background(200 * 257, 210 * 257, 210 * 257); my ($h, $w) = gtkroot()->get_size; |