Browse Source

Changed Advanced Section to Advanced Boot Section

master
freesource 24 years ago
parent
commit
0ce676f74a
  1. 16
      gBootRoot

16
gBootRoot

@ -1,10 +1,10 @@
#!/usr/bin/perl -w #!/usr/bin/perl -w
# gBootRoot Copyright (C) 2000 # gBootRoot Copyright (C) 2000
# Project Developer and Coordinator # Lead Developer and Project Coordinator
# Jonathan Rosenbaum <mttrader@access.mountain.net> # Jonathan Rosenbaum <mttrader@access.mountain.net>
# #
# Lead Programmer and Developer # Developer
# Cristian Ionescu-Idbohrn <cii@axis.com> # Cristian Ionescu-Idbohrn <cii@axis.com>
# #
# http://the.netpedia.net/gBootRoot.html # http://the.netpedia.net/gBootRoot.html
@ -66,7 +66,7 @@ my $lilo_conf = "/etc/lilo.conf";
# * Step increment changed for device size spinner button. # * Step increment changed for device size spinner button.
# * New documentation and grammar corrections. # * New documentation and grammar corrections.
# * Bugs closed: 111579, 112555, 112949, 111580, 11636, 12073, # * Bugs closed: 111579, 112555, 112949, 111580, 11636, 12073,
# 12215, 13385, 13453, 13455. # 12215, 13385, 13453, 13455.
# #
# 1.0.3 - 08.09.2000 # 1.0.3 - 08.09.2000
# * Tmp and mnt are now created on the fly, # * Tmp and mnt are now created on the fly,
@ -345,8 +345,8 @@ $entry5->set_usize(15,20);
$box2->pack_start( $entry5, $true, $true, 0 ); $box2->pack_start( $entry5, $true, $true, 0 );
$entry5->show(); $entry5->show();
# The ADVANCED SECTION # The ADVANCED BOOT SECTION
###################### ###########################
# Separator # Separator
$separator = new Gtk::HSeparator(); $separator = new Gtk::HSeparator();
$box1->pack_start( $separator, $false, $true, 0 ); $box1->pack_start( $separator, $false, $true, 0 );
@ -359,12 +359,12 @@ $vbox_advanced->show();
# The Advanced Section button # The Advanced Section button
hbox_advanced(); hbox_advanced();
my $button_advanced = new Gtk::Button("Advanced Section"); my $button_advanced = new Gtk::Button("Advanced Boot Section");
$tooltips->set_tip( $button_advanced, "This is where all the advanced stuff is found.", "" ); $tooltips->set_tip( $button_advanced, "Change settings for the bootdisk.", "" );
$button_advanced->signal_connect("clicked",\&advanced_section ); $button_advanced->signal_connect("clicked",\&advanced_section );
$hbox_advanced->pack_start( $button_advanced, $true, $true, 0 ); $hbox_advanced->pack_start( $button_advanced, $true, $true, 0 );
$button_advanced->show(); $button_advanced->show();
###################### ###########################
# Separator # Separator
$separator = new Gtk::HSeparator(); $separator = new Gtk::HSeparator();

Loading…
Cancel
Save