summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-01-14 13:30:03 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-01-14 13:30:03 +0000
commitea760104ceabbd918fda0032fced1cc23ae98deb (patch)
tree0cf2cf72de111c7b6fa3707533f77628fdcff6a1 /perl-install
parentb829826ba3a1871a57e246583b476ea86f213db3 (diff)
downloaddrakx-ea760104ceabbd918fda0032fced1cc23ae98deb.tar
drakx-ea760104ceabbd918fda0032fced1cc23ae98deb.tar.gz
drakx-ea760104ceabbd918fda0032fced1cc23ae98deb.tar.bz2
drakx-ea760104ceabbd918fda0032fced1cc23ae98deb.tar.xz
drakx-ea760104ceabbd918fda0032fced1cc23ae98deb.zip
fix font_choice()
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/drakfont4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont
index 959b4b055..8d30993ae 100755
--- a/perl-install/standalone/drakfont
+++ b/perl-install/standalone/drakfont
@@ -949,10 +949,10 @@ sub font_choice {
clicked => \&file_ok_sel,
$file_dialog
);
- $file_dialog->ok_button->child->set(N("Add"));
+ $file_dialog->ok_button->set_label(N("Add"));
$file_dialog->cancel_button->signal_connect(
clicked => sub { $file_dialog->destroy() });
- $file_dialog->cancel_button->child->set(N("Close"));
+ $file_dialog->cancel_button->set_label(N("Close"));
$file_dialog->set_filename(
N("Select the font file or directory and click on 'Add'"));
$file_dialog->show();