diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-08-26 13:30:20 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-08-26 13:30:20 +0000 |
commit | 210db8ec133742efb55f6510211eaef16dbf5958 (patch) | |
tree | ca87495befa4d1baa24670c1f99de342dd585668 /perl-install/standalone/drakconnect | |
parent | f5d4d3bafcef5ef34632b2f2224ec026eee50c0b (diff) | |
download | drakx-210db8ec133742efb55f6510211eaef16dbf5958.tar drakx-210db8ec133742efb55f6510211eaef16dbf5958.tar.gz drakx-210db8ec133742efb55f6510211eaef16dbf5958.tar.bz2 drakx-210db8ec133742efb55f6510211eaef16dbf5958.tar.xz drakx-210db8ec133742efb55f6510211eaef16dbf5958.zip |
(configure_net) Gtk2::Dialog main area is already a vbox, so it's
useless to pack a vbox there idem for action area and Gtk2::HButtonBox
Diffstat (limited to 'perl-install/standalone/drakconnect')
-rwxr-xr-x | perl-install/standalone/drakconnect | 53 |
1 files changed, 24 insertions, 29 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index 31d226c6a..e5452eb82 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -679,35 +679,30 @@ Create one first by clicking on 'Configure'")),1,1,0); $i++; } - - $dialog->vbox->pack_start(gtkpack__(new Gtk2::VBox(0, 0), - new Gtk2::Label(N("Internet Connection Configuration")), - new Gtk2::HSeparator, - create_packtable({ col_spacings => 5, row_spacings => 5, homogenous => 1 }, - [ Gtk2::Label->new(N("Profile: ")), - Gtk2::Label->new(translate($netcnx->{PROFILE})) ], - [ Gtk2::Label->new(N("Connection type: ")), - Gtk2::Label->new(translate($netcnx->{type})) ], - ), - new Gtk2::HSeparator, - gtkadd(Gtk2::Frame->new(N("Parameters")), $vbox2), - ), - 1, 1, 0 - ); - $dialog->action_area->pack_start(gtkpack(Gtk2::HButtonBox->new, - gtksignal_connect(Gtk2::Button->new(N("Ok")), clicked => sub { - each_index { - ${$conf_data[$::i][1]} = $infos[2*$::i+1]->get_text if $_; - } @mask; - update(); - $button_apply->set_sensitive(1); - $exit_dialogsub->(); - $dialog->destroy; Gtk2->main_quit; - }), - gtksignal_connect(Gtk2::Button->new(N("Cancel")), clicked => $exit_dialogsub) - ), - 1, 1, 0 - ); + gtkpack(new Gtk2::VBox(0, 0), + new Gtk2::Label(N("Internet Connection Configuration")), + new Gtk2::HSeparator, + create_packtable({ col_spacings => 5, row_spacings => 5, homogenous => 1 }, + [ Gtk2::Label->new(N("Profile: ")), + Gtk2::Label->new(translate($netcnx->{PROFILE})) ], + [ Gtk2::Label->new(N("Connection type: ")), + Gtk2::Label->new(translate($netcnx->{type})) ], + ), + new Gtk2::HSeparator, + gtkadd(Gtk2::Frame->new(N("Parameters")), $vbox2), + ); + gtkpack($dialog->action_area, + gtksignal_connect(Gtk2::Button->new(N("Ok")), clicked => sub { + each_index { + ${$conf_data[$::i][1]} = $infos[2*$::i+1]->get_text if $_; + } @mask; + update(); + $button_apply->set_sensitive(1); + $exit_dialogsub->(); + $dialog->destroy; Gtk2->main_quit; + }), + gtksignal_connect(Gtk2::Button->new(N("Cancel")), clicked => $exit_dialogsub) + ); $dialog->show_all; $dialog->run; |