summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-03-05 14:17:21 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-03-05 14:17:21 +0000
commit0bb6afa215fff585416bc88aa967c7e1eb61672e (patch)
tree87a6aae21ffdfa6176aff92b9af29a0ce4209060
parent48b4c7ddf34502c7d75980f740a1ca6c406ed0e8 (diff)
downloaddrakx-backup-do-not-use-0bb6afa215fff585416bc88aa967c7e1eb61672e.tar
drakx-backup-do-not-use-0bb6afa215fff585416bc88aa967c7e1eb61672e.tar.gz
drakx-backup-do-not-use-0bb6afa215fff585416bc88aa967c7e1eb61672e.tar.bz2
drakx-backup-do-not-use-0bb6afa215fff585416bc88aa967c7e1eb61672e.tar.xz
drakx-backup-do-not-use-0bb6afa215fff585416bc88aa967c7e1eb61672e.zip
*** empty log message ***
-rw-r--r--perl-install/ChangeLog18
-rw-r--r--perl-install/my_gtk.pm2
2 files changed, 19 insertions, 1 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog
index 25d356c97..5c3f661b1 100644
--- a/perl-install/ChangeLog
+++ b/perl-install/ChangeLog
@@ -1,3 +1,17 @@
+2000-03-05 Pixel <pixel@mandrakesoft.com>
+
+ * my_gtk.pm (_ask_from_list): replace focus_row with set_focus_row
+ (tis the Gtk-Perl 0.7002 was of doing)
+
+2000-03-04 Pixel <pixel@mandrakesoft.com>
+
+ * modules.pm (write_conf): add ide-floppy to the modprobes of
+ post-install supermount
+
+2000-03-03 Pixel <pixel@mandrakesoft.com>
+
+ * commands.pm (ps): add RSS to ps command
+
2000-03-02 Adam Lebsack <adam@mandrakesoft.com>
* mouse.pm: added mac mouse detection to mouse::detect.
@@ -15,6 +29,10 @@
2000-03-01 Pixel <pixel@mandrakesoft.com>
+ * lilo.pm (install_grub): creation
+
+ * network.pm (write_interface_conf): ONBOOT = !pcmcia
+
* install_steps_gtk.pm (new): more intelligent SIGCHLD handler
2000-02-29 Pixel <pixel@mandrakesoft.com>
diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm
index 9cf9a7551..89944f342 100644
--- a/perl-install/my_gtk.pm
+++ b/perl-install/my_gtk.pm
@@ -459,7 +459,7 @@ sub _ask_from_list {
my $leave = sub { $o->{retval} = $l->[$curr]; Gtk->main_quit };
my $select = sub {
- $list->focus_row($_[0]);
+ $list->set_focus_row($_[0]);
$list->select_row($_[0], 0);
$list->moveto($_[0], 0, 0.5, 0);
};