summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--nautilus-installer/src/installer.c8
2 files changed, 14 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 84aecaf49..948d75b1d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-11-22 Robey Pointer <robey@eazel.com>
+
+ * nautilus-installer/src/installer.c: (start_over_button),
+ (jump_to_retry_page):
+
+ Change ignore button callback to match what GTK expects.
+
2000-11-22 Michael Engber <engber@eazel.com>
* src/nautilus-application.c: (nautilus_application_startup):
diff --git a/nautilus-installer/src/installer.c b/nautilus-installer/src/installer.c
index 227efc8f2..9b756fb65 100644
--- a/nautilus-installer/src/installer.c
+++ b/nautilus-installer/src/installer.c
@@ -722,6 +722,12 @@ start_over_timer (EazelInstaller *installer)
}
static void
+start_over_button (GtkWidget *widget, EazelInstaller *installer)
+{
+ start_over (installer);
+}
+
+static void
skip_over_remove_problems (GtkWidget *widget,
EazelInstaller *installer)
{
@@ -891,7 +897,7 @@ jump_to_retry_page (EazelInstaller *installer)
}
gtk_widget_set_name (button, "remove_button");
gtk_signal_connect (GTK_OBJECT (button), "clicked",
- GTK_SIGNAL_FUNC (start_over_callback),
+ GTK_SIGNAL_FUNC (start_over_button),
installer);
gtk_widget_show (button);
gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, FALSE, 0);