diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-09-29 08:48:36 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-09-29 08:48:36 +0000 |
commit | fe6b4777f419e95572bec37ee496c910acf787e1 (patch) | |
tree | 905154de6ab42beb140dd2b0795650e625051620 /drakpxelinux.pl | |
parent | 88f435fb6b1b1d00c901088c069415500c813a5e (diff) | |
download | drakpxelinux-fe6b4777f419e95572bec37ee496c910acf787e1.tar drakpxelinux-fe6b4777f419e95572bec37ee496c910acf787e1.tar.gz drakpxelinux-fe6b4777f419e95572bec37ee496c910acf787e1.tar.bz2 drakpxelinux-fe6b4777f419e95572bec37ee496c910acf787e1.tar.xz drakpxelinux-fe6b4777f419e95572bec37ee496c910acf787e1.zip |
fixed encoding problem due to bad order of calling ugtk2
Diffstat (limited to 'drakpxelinux.pl')
-rw-r--r-- | drakpxelinux.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drakpxelinux.pl b/drakpxelinux.pl index 07551ff..4c9e670 100644 --- a/drakpxelinux.pl +++ b/drakpxelinux.pl @@ -30,11 +30,12 @@ use strict; use common; use network::network; #use MDK::Common; -use ugtk2 qw(:ask :helpers :wrappers :create :dialogs); use interactive; # i18n: IMPORTANT: to get correct namespace (drakpxelinux instead of libDrakX) BEGIN { unshift @::textdomains, 'drakpxelinux' } +# must come *after* definition of textdomains for proper initialisation +use ugtk2 qw(:ask :helpers :wrappers :create :dialogs); use constant FALSE => 0; use constant TRUE => 1; |