summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2016-06-30 18:56:10 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2016-06-30 18:56:10 +0200
commit054e768336b3b6c35493c33056599216765af6f5 (patch)
tree51bc326a6aa6aa902695222a84074b38600dd379 /perl-install/interactive
parent99f8d638ecc30976ddf576ed767cc5cffdbd5f51 (diff)
downloaddrakx-054e768336b3b6c35493c33056599216765af6f5.tar
drakx-054e768336b3b6c35493c33056599216765af6f5.tar.gz
drakx-054e768336b3b6c35493c33056599216765af6f5.tar.bz2
drakx-054e768336b3b6c35493c33056599216765af6f5.tar.xz
drakx-054e768336b3b6c35493c33056599216765af6f5.zip
remove bogus bits from commit
Diffstat (limited to 'perl-install/interactive')
-rw-r--r--perl-install/interactive/gtk.pm3
1 files changed, 0 insertions, 3 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index 56c8a358b..c37143fc3 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -435,7 +435,6 @@ sub create_widget {
$w->signal_connect(key_press_event => $e->{may_go_to_next});
$set = sub { $adj->set_value($_[0]) };
} elsif ($e->{type} eq 'expander') {
- # FIXME: we handle advanced here:
$e->{grow} = 'fill';
my $children = [ if_($e->{message}, { type => 'only_label', no_indent => 1, val => \$e->{message} }), @{$e->{children}} ];
create_widgets_block($o, $common, $children, $update, $ignore_ref);
@@ -669,7 +668,6 @@ sub create_widgets_block {
my $eater = if_($e->{alignment} eq 'right' && !$label_w, gtknew('Label'));
- # FIXME: we should not pack advanced button here
$e->{real_w} = gtkpack_(Gtk3::HBox->new,
if_($e->{icon}, 0, eval { gtkcreate_img($e->{icon}) }),
if_($eater, 1, $eater),
@@ -864,7 +862,6 @@ sub ask_fromW {
[ gtknew('Install_Button', text => N("Help"),
clicked => sub { display_help($o, $common) }), undef, 1 ]),
if_($common->{more_buttons}, @{$common->{more_buttons}}),
- # FIXME: we should pack advanced button here
);
my $buttons_pack = ($common->{ok} || !exists $common->{ok}) && $mainw->create_okcancel($common->{ok}, $common->{cancel}, '', @more_buttons);