summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2012-04-08 13:45:12 +0000
committerPascal Terjan <pterjan@mageia.org>2012-04-08 13:45:12 +0000
commit08d3d4bab23203d6f354692dba6ddcaa24bc24f1 (patch)
treecb6130eacc424ab63eecddcb7f497ef5a7f7164a /perl-install/interactive
parent021a0c24180014a75759fd01951d34330e41a58f (diff)
downloaddrakx-backup-do-not-use-08d3d4bab23203d6f354692dba6ddcaa24bc24f1.tar
drakx-backup-do-not-use-08d3d4bab23203d6f354692dba6ddcaa24bc24f1.tar.gz
drakx-backup-do-not-use-08d3d4bab23203d6f354692dba6ddcaa24bc24f1.tar.bz2
drakx-backup-do-not-use-08d3d4bab23203d6f354692dba6ddcaa24bc24f1.tar.xz
drakx-backup-do-not-use-08d3d4bab23203d6f354692dba6ddcaa24bc24f1.zip
Drop debug code
Diffstat (limited to 'perl-install/interactive')
-rw-r--r--perl-install/interactive/curses.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/perl-install/interactive/curses.pm b/perl-install/interactive/curses.pm
index 482f14e45..7b81e9e09 100644
--- a/perl-install/interactive/curses.pm
+++ b/perl-install/interactive/curses.pm
@@ -418,11 +418,9 @@ sub create_widget {
'-text' => '',
'-regexp' => '/^\d*$/',
'-onchange' => sub {
- log::l("onchange: ".$w->text);
$w->text($e->{min}) if $w->text < $e->{min};
$w->text($e->{max}) if $w->text > $e->{max};
${$e->{val}} = $w->text;
- log::l("/onchange: ".$w->text);
$changed->() if $changed;
},
%options);