summaryrefslogtreecommitdiff
path: root/nautilus-installer/src/installer.c
diff options
context:
space:
mode:
authorRobey Pointer <robey@src.gnome.org>2000-11-23 02:09:23 +0000
committerRobey Pointer <robey@src.gnome.org>2000-11-23 02:09:23 +0000
commit142217553b21183b7cac72c57999ead52a59cf1e (patch)
treed58dac5bde0f4ac0ae69e38f24db906ad7855f20 /nautilus-installer/src/installer.c
parent6110ce9f525b3670d3dff1201b6ad50ef52815dc (diff)
downloadnautilus-142217553b21183b7cac72c57999ead52a59cf1e.tar.gz
change ignore button to match what gtk expects
Diffstat (limited to 'nautilus-installer/src/installer.c')
-rw-r--r--nautilus-installer/src/installer.c8
1 files changed, 7 insertions, 1 deletions
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);