summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-08-01 20:25:01 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-08-01 20:25:01 +0000
commitbc12968682e2511ca6e3d0fff3e33854b00cbad5 (patch)
tree447f194a2d316129c14603e34dbbe49e830b8999 /perl-install/interactive/gtk.pm
parenta67001a3c99c3e335e5faa9c5bf5c6245444b7ff (diff)
downloaddrakx-backup-do-not-use-bc12968682e2511ca6e3d0fff3e33854b00cbad5.tar
drakx-backup-do-not-use-bc12968682e2511ca6e3d0fff3e33854b00cbad5.tar.gz
drakx-backup-do-not-use-bc12968682e2511ca6e3d0fff3e33854b00cbad5.tar.bz2
drakx-backup-do-not-use-bc12968682e2511ca6e3d0fff3e33854b00cbad5.tar.xz
drakx-backup-do-not-use-bc12968682e2511ca6e3d0fff3e33854b00cbad5.zip
don't warn when label is used with no text for boot entries
(i want titi's explaination on this first)
Diffstat (limited to 'perl-install/interactive/gtk.pm')
-rw-r--r--perl-install/interactive/gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index 837e8f267..582216761 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -408,7 +408,7 @@ sub ask_fromW {
if ($e->{image}) {
$w = gtkadd(Gtk2::CheckButton->new, gtkshow(gtkcreate_img($e->{image})));
} else {
- warn "\"text\" member should have been used instead of \"label\" one at:\n", common::backtrace(), "\n" if $e->{label} && !$e->{text};
+#- warn "\"text\" member should have been used instead of \"label\" one at:\n", common::backtrace(), "\n" if $e->{label} && !$e->{text};
$w = Gtk2::CheckButton->new($e->{text});
}
$w->signal_connect(clicked => $changed);