summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-09-13 10:28:13 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-09-13 10:28:13 +0000
commitb4ccab7224afd572322ecc21b7192977c33590eb (patch)
treef5d64afac451b36b3a6fcdebcfd0f6127accd893
parent7f44b5f0286628eb1fd715ce885f0fce073000ae (diff)
downloaddrakx-backup-do-not-use-b4ccab7224afd572322ecc21b7192977c33590eb.tar
drakx-backup-do-not-use-b4ccab7224afd572322ecc21b7192977c33590eb.tar.gz
drakx-backup-do-not-use-b4ccab7224afd572322ecc21b7192977c33590eb.tar.bz2
drakx-backup-do-not-use-b4ccab7224afd572322ecc21b7192977c33590eb.tar.xz
drakx-backup-do-not-use-b4ccab7224afd572322ecc21b7192977c33590eb.zip
don't have title twice (we already have it in the banner)
-rw-r--r--perl-install/install_steps_gtk.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index 91eb93d91..73369e4f4 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -225,7 +225,7 @@ sub reallyChooseGroups {
#- when restarting this step, it might be necessary to reload the compssUsers.pl (bug 11558). kludgy.
if (!ref $o->{gtk_display_compssUsers}) { install_any::load_rate_files($o) }
ugtk2::gtkadd($w->{window},
- gtkpack_($w->create_box_with_title(N("Package Group Selection")),
+ gtknew('VBox', children => [
1, $o->{gtk_display_compssUsers}->($entry),
1, '',
0, gtknew('HBox', children_loose => [
@@ -236,7 +236,7 @@ sub reallyChooseGroups {
),
gtknew('Button', text => N("Next"), clicked => sub { Gtk2->main_quit }),
]),
- ),
+ ]),
);
$w->main;
1;