diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-03-24 19:05:09 +0800 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-03-24 19:24:29 +0800 |
commit | a79cbb8de56de5a163340d31524f0f77bc35ac2a (patch) | |
tree | d21106a685ff51d7e21cd38df7436b09ed55b0c8 /src/empathy-main-window.c | |
parent | d47742d59d3635d1dc78cc298244baaeede9f67d (diff) | |
download | gsoc2013-empathy-a79cbb8de56de5a163340d31524f0f77bc35ac2a.tar gsoc2013-empathy-a79cbb8de56de5a163340d31524f0f77bc35ac2a.tar.gz gsoc2013-empathy-a79cbb8de56de5a163340d31524f0f77bc35ac2a.tar.bz2 gsoc2013-empathy-a79cbb8de56de5a163340d31524f0f77bc35ac2a.tar.lz gsoc2013-empathy-a79cbb8de56de5a163340d31524f0f77bc35ac2a.tar.xz gsoc2013-empathy-a79cbb8de56de5a163340d31524f0f77bc35ac2a.tar.zst gsoc2013-empathy-a79cbb8de56de5a163340d31524f0f77bc35ac2a.zip |
Automatically reap the empathy-accounts child process
Remove unrequired exit_cb code
Diffstat (limited to 'src/empathy-main-window.c')
-rw-r--r-- | src/empathy-main-window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index fe9af9c4d..daeefeb33 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -362,7 +362,7 @@ main_window_error_edit_clicked_cb (GtkButton *button, account = g_object_get_data (G_OBJECT (button), "account"); empathy_accounts_dialog_show_application ( - gtk_widget_get_screen (GTK_WIDGET (button)), NULL, NULL, + gtk_widget_get_screen (GTK_WIDGET (button)), account, FALSE, FALSE); main_window_remove_error (window, account); @@ -1068,7 +1068,7 @@ main_window_edit_accounts_cb (GtkAction *action, EmpathyMainWindow *window) { empathy_accounts_dialog_show_application (gdk_screen_get_default (), - NULL, NULL, NULL, FALSE, FALSE); + NULL, FALSE, FALSE); } static void @@ -1146,7 +1146,7 @@ main_window_throbber_button_press_event_cb (GtkWidget *throbber_ebox, empathy_accounts_dialog_show_application ( gtk_widget_get_screen (GTK_WIDGET (throbber_ebox)), - NULL, NULL, NULL, FALSE, FALSE); + NULL, FALSE, FALSE); return FALSE; } |