[gitg] Destroy dialog correctly
- From: Jesse van den Kieboom <jessevdk src gnome org>
- To: svn-commits-list gnome org
- Subject: [gitg] Destroy dialog correctly
- Date: Sun, 5 Jul 2009 01:14:00 +0000 (UTC)
commit c29765ae170ddb0d40628c5c1adae5c6b96ddca8
Author: Jesse van den Kieboom <jessevdk gnome org>
Date: Sat Jul 4 19:23:17 2009 +0200
Destroy dialog correctly
gitg/gitg-branch-actions.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/gitg/gitg-branch-actions.c b/gitg/gitg-branch-actions.c
index 10e77ed..da4c7ac 100644
--- a/gitg/gitg-branch-actions.c
+++ b/gitg/gitg-branch-actions.c
@@ -33,6 +33,8 @@ free_progress_info (ProgressInfo *info)
g_source_remove (info->timeout_id);
}
+ gtk_widget_destroy (GTK_WIDGET (info->dialog));
+
g_object_unref (info->runner);
g_slice_free (ProgressInfo, info);
}
@@ -72,15 +74,18 @@ on_progress_end (GitgRunner *runner, gboolean cancelled, ProgressInfo *info)
progress = GITG_PROGRESS_SUCCESS;
}
- info->callback (info->window, progress, info->callback_data);
+ GitgWindow *window = info->window;
+ ProgressCallback callback = info->callback;
+ gpointer data = info->callback_data;
free_progress_info (info);
+
+ callback (window, progress, data);
}
static void
on_progress_response (GtkDialog *dialog, GtkResponseType response, ProgressInfo *info)
{
gitg_runner_cancel (info->runner);
- gtk_widget_destroy (GTK_WIDGET (dialog));
}
static gboolean
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]