summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-11-13 11:46:04 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-11-13 11:46:04 +0000
commit4006b6abce88b7a53502926f921ae1408b5dd37e (patch)
tree2090905e20aaf74446663134f6980fe9cc61bfdd /perl-install/interactive
parentf3274ad01b2b1d7e84b6a2c26ce03f605b0b7369 (diff)
downloaddrakx-backup-do-not-use-4006b6abce88b7a53502926f921ae1408b5dd37e.tar
drakx-backup-do-not-use-4006b6abce88b7a53502926f921ae1408b5dd37e.tar.gz
drakx-backup-do-not-use-4006b6abce88b7a53502926f921ae1408b5dd37e.tar.bz2
drakx-backup-do-not-use-4006b6abce88b7a53502926f921ae1408b5dd37e.tar.xz
drakx-backup-do-not-use-4006b6abce88b7a53502926f921ae1408b5dd37e.zip
add/remove spaces to make perl_checker happy
Diffstat (limited to 'perl-install/interactive')
-rw-r--r--perl-install/interactive/http.pm2
-rw-r--r--perl-install/interactive/newt.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/interactive/http.pm b/perl-install/interactive/http.pm
index b9e567371..33deb4b22 100644
--- a/perl-install/interactive/http.pm
+++ b/perl-install/interactive/http.pm
@@ -93,7 +93,7 @@ sub ask_fromW {
} else {
print $e->{hidden} ?
$q->password_field(-name => "w$::i", -default => ${$e->{val}}) :
- $q->textfield (-name => "w$::i", -default => ${$e->{val}});
+ $q->textfield( -name => "w$::i", -default => ${$e->{val}});
}
print "</td></tr>\n";
diff --git a/perl-install/interactive/newt.pm b/perl-install/interactive/newt.pm
index 1f1a49d0d..b15b92a57 100644
--- a/perl-install/interactive/newt.pm
+++ b/perl-install/interactive/newt.pm
@@ -19,7 +19,7 @@ sub new() {
Newt::Cls();
Newt::SetSuspendCallback();
($width, $height) = Newt::GetScreenSize();
- open STDERR,">/dev/null" if $::isStandalone && !$::testing;
+ open STDERR, ">/dev/null" if $::isStandalone && !$::testing;
bless {}, $_[0];
}
@@ -53,7 +53,7 @@ sub myTextbox {
sub separator {
my $blank = Newt::Component::Form(\undef, '', 0);
- $blank->FormSetWidth ($_[0]);
+ $blank->FormSetWidth($_[0]);
$blank->FormSetHeight($_[1]);
$blank;
}