diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-17 18:30:24 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-17 18:30:24 +0000 |
commit | c14152a26c29b5b169d0ebbd577d2ef09c8141da (patch) | |
tree | 80d0f1920725ca123cb87fec68619b0836b0276a /perl-install/standalone | |
parent | 234a6c88588be9def268f57bf43f9fae9b6317cf (diff) | |
download | drakx-c14152a26c29b5b169d0ebbd577d2ef09c8141da.tar drakx-c14152a26c29b5b169d0ebbd577d2ef09c8141da.tar.gz drakx-c14152a26c29b5b169d0ebbd577d2ef09c8141da.tar.bz2 drakx-c14152a26c29b5b169d0ebbd577d2ef09c8141da.tar.xz drakx-c14152a26c29b5b169d0ebbd577d2ef09c8141da.zip |
perl_checker fixes
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakconnect | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index bb504b962..a8e44f50a 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -580,12 +580,12 @@ Create one first by clicking on 'Configure'")),1,1,0); $window->vbox->pack_start(gtkpack__(new Gtk2::VBox(0, 0), new Gtk2::Label(N("Internet Connection Configuration")), new Gtk2::HSeparator, - my $table1 = 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})) ], - ), + 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), ), |