summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install_gtk.pm15
1 files changed, 0 insertions, 15 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm
index 013dc9bbc..61812af12 100644
--- a/perl-install/install_gtk.pm
+++ b/perl-install/install_gtk.pm
@@ -74,21 +74,6 @@ widget "*" style "default-font"
}
#------------------------------------------------------------------------------
-sub create_big_help {
- my ($o) = @_;
- my $w = ugtk2->new('', grab => 1, force_position => [ $::stepswidth, $::logoheight ]);
- $w->{rwindow}->set_size_request($::logowidth, $::rootheight - $::logoheight);
- gtkadd($w->{window},
- gtkpack_(Gtk2::VBox->new(0,0),
- 1, create_scrolled_window(gtktext_insert(Gtk2::TextView->new, $o->{current_help})),
- 0, gtksignal_connect(my $ok = Gtk2::Button->new(N("Ok")), "clicked" => sub { Gtk2->main_quit }),
- ));
- $ok->grab_focus;
- $w->main;
- gtkset_mousecursor_normal();
-}
-
-#------------------------------------------------------------------------------
sub create_help_window {
my ($o) = @_;