diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-11-04 21:27:22 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-11-04 21:27:22 +0800 |
commit | 4e7597a4a2732baeeda9dd4876a873ec6588d6f7 (patch) | |
tree | 7e800cb70a1a3d6bf306d1a9dee0acf548c629d2 /calendar/gui/gnome-cal.c | |
parent | 94cfee90c479a49b354ff8d9d8546921bf9a4d3e (diff) | |
download | gsoc2013-evolution-4e7597a4a2732baeeda9dd4876a873ec6588d6f7.tar.gz gsoc2013-evolution-4e7597a4a2732baeeda9dd4876a873ec6588d6f7.tar.zst gsoc2013-evolution-4e7597a4a2732baeeda9dd4876a873ec6588d6f7.zip |
Fix compiler warnings.
2008-11-04 Matthew Barnes <mbarnes@redhat.com>
* calendar/gui/calendar-commands.c:
* calendar/gui/calendar-component.h:
* calendar/gui/gnome-cal.c:
* e-util/e-non-intrusive-error-dialog.c:
* e-util/e-non-intrusive-error-dialog.h:
Fix compiler warnings.
svn path=/trunk/; revision=36738
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index ef9e3b7f25..1e08f727c5 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -3075,8 +3075,8 @@ backend_died_cb (ECal *ecal, gpointer data) w = e_error_new(GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (gcal))), "calendar:backend_died", NULL); e_calendar_utils_show_error_silent (w); - g_hash_table_insert (non_intrusive_error_table, id, g_object_ref(w)); - g_signal_connect((GtkObject *)w, "destroy", G_CALLBACK(non_intrusive_error_remove),id); + g_hash_table_insert (non_intrusive_error_table, (gpointer) id, g_object_ref(w)); + g_signal_connect((GtkObject *)w, "destroy", G_CALLBACK(non_intrusive_error_remove), (gpointer) id); } GtkWidget * |