summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-08-26 15:52:38 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-08-26 15:52:38 +0000
commitd72620ce75fb614ec5e4f0f5e2009b12a01934ce (patch)
tree70076c61119e983771a7a4272a4bf7d35ba51373 /perl-install
parente17fa8114f1f68ead9e9e07f8aef136bd05ea428 (diff)
downloaddrakx-d72620ce75fb614ec5e4f0f5e2009b12a01934ce.tar
drakx-d72620ce75fb614ec5e4f0f5e2009b12a01934ce.tar.gz
drakx-d72620ce75fb614ec5e4f0f5e2009b12a01934ce.tar.bz2
drakx-d72620ce75fb614ec5e4f0f5e2009b12a01934ce.tar.xz
drakx-d72620ce75fb614ec5e4f0f5e2009b12a01934ce.zip
fix "Internet Connection Configuration" dialog does not show up its
contents
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/drakconnect14
1 files changed, 6 insertions, 8 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect
index dc8e343e1..d42909f4c 100755
--- a/perl-install/standalone/drakconnect
+++ b/perl-install/standalone/drakconnect
@@ -622,26 +622,24 @@ Create one first by clicking on 'Configure'")));
next;
}
$infos[2*$i] = Gtk2::HBox->new(0,0);
- my $l = Gtk2::Label->new($_->[0]);
- $l->set_justify('left');
- $infos[2*$i]->pack_start($l, 0, 0, 0);
- $vbox2->pack_start($infos[2*$i], 0, 0, 0);
+ gtkpack($infos[2*$i], gtkset_justify(Gtk2::Label->new($_->[0]), 'left'));
+ gtkpack($vbox2, $infos[2*$i]);
if (defined $_->[2]) {
my $c = Gtk2::Combo->new;
$c->set_popdown_strings(@{$_->[2]});
$infos[2*$i+1] = $c->entry;
- $infos[2*$i]->pack_start($c,0 , 0, 0);
+ gtkpack($infos[2*$i], $c);
} else {
$infos[2*$i+1] = Gtk2::Entry->new;
- $infos[2*$i]->pack_start($infos[2*$i+1], 0, 0, 0);
+ gtkpack($infos[2*$i], $infos[2*$i+1]);
#hide password if Entry Password
- if ($_->[0] eq N("Account Password") || $_->[0] eq N("Password")) { $infos[2*$i+1]->set_visibility(0) };
+ $infos[2*$i+1]->set_visibility(0) if $_->[0] eq N("Account Password") || $_->[0] eq N("Password");
}
$infos[2*$i+1]->set_text(${$_->[1]});
$i++;
}
- gtkpack(Gtk2::VBox->new(0, 0),
+ gtkpack($dialog->vbox,
Gtk2::Label->new(N("Internet Connection Configuration")),
Gtk2::HSeparator->new,
create_packtable({ col_spacings => 5, row_spacings => 5, homogenous => 1 },