summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-01-22 10:16:56 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-01-22 10:16:56 +0000
commit1e2cebd45e8b3f50ae72044113aef0a128cb4b59 (patch)
tree14b6735f7d863b01dc6a2b96c07207e9e00fc837 /perl-install
parent84c5278fe2df5f268622095e51270912137f019d (diff)
downloaddrakx-1e2cebd45e8b3f50ae72044113aef0a128cb4b59.tar
drakx-1e2cebd45e8b3f50ae72044113aef0a128cb4b59.tar.gz
drakx-1e2cebd45e8b3f50ae72044113aef0a128cb4b59.tar.bz2
drakx-1e2cebd45e8b3f50ae72044113aef0a128cb4b59.tar.xz
drakx-1e2cebd45e8b3f50ae72044113aef0a128cb4b59.zip
fix progressbar label initialization
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/drakfont14
1 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont
index aefdfc10b..297048d02 100755
--- a/perl-install/standalone/drakfont
+++ b/perl-install/standalone/drakfont
@@ -1138,18 +1138,18 @@ sub import_status {
{ col_spacings => 10, row_spacings => 50 },
[ "", "" ],
[
- N("Initial tests"), $pbar, $pbar->{label} = new Gtk2::Label(' ')
+ N("Initial tests"), $pbar, $pbar->set_text(' ')
],
[
N("Copy fonts on your system"), $pbar1,
- $pbar1->{label} = new Gtk2::Label(' ')
+ $pbar1->set_text(' ')
],
[
N("Install & convert Fonts"), $pbar2,
- $pbar2->{label} = new Gtk2::Label(' ')
+ $pbar2->set_text(' ')
],
[
- N("Post Install"), $pbar3, $pbar3->{label} = new Gtk2::Label(' ')
+ N("Post Install"), $pbar3, $pbar3->set_text(' ')
],
),
);
@@ -1171,15 +1171,15 @@ sub import_status_uninstall {
[ "", "" ],
[ "", "" ],
[
- N("Initial tests"), $pbar, $pbar->{label} = new Gtk2::Label(' ')
+ N("Initial tests"), $pbar, $pbar->set_text(' ')
],
[
N("Remove fonts on your system"), $pbar1,
- $pbar1->{label} = new Gtk2::Label(' ')
+ $pbar1->set_text(' ')
],
[
N("Post Uninstall"), $pbar2,
- $pbar2->{label} = new Gtk2::Label(' ')
+ $pbar2->set_text(' ')
],
),
);