diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-08-09 03:10:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-08-09 03:10:27 +0000 |
commit | b42262b1e1a30bfd7f09210e1d3b6f0da8ca6734 (patch) | |
tree | 2fe2de756a5f30a1ed613eee45223555bf7c5e27 /perl-install/ugtk2.pm | |
parent | 19a10e98f556ee3ce47831364ae45c044329b45f (diff) | |
download | drakx-b42262b1e1a30bfd7f09210e1d3b6f0da8ca6734.tar drakx-b42262b1e1a30bfd7f09210e1d3b6f0da8ca6734.tar.gz drakx-b42262b1e1a30bfd7f09210e1d3b6f0da8ca6734.tar.bz2 drakx-b42262b1e1a30bfd7f09210e1d3b6f0da8ca6734.tar.xz drakx-b42262b1e1a30bfd7f09210e1d3b6f0da8ca6734.zip |
we never pass a prefix to lang::read() which is always use in standalone,
so use $::prefix and don't pass a prefix anymore
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 7fcdb2c24..b7b6c7e0c 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -5,7 +5,7 @@ use strict; use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK @icon_paths $wm_icon $force_center_at_pos $force_center $force_focus $grab $pop_it $border); #- leave it on one line, for automatic removal of the line at package creation use lang; -$::o = { locale => lang::read('', 1) } if !$::isInstall; +$::o = { locale => lang::read(1) } if !$::isInstall; @ISA = qw(Exporter); %EXPORT_TAGS = ( |