diff options
author | Jasmine Hassan <[email protected]> | 2012-11-23 11:58:30 +0200 |
---|---|---|
committer | Jasmine Hassan <[email protected]> | 2012-11-23 11:58:30 +0200 |
commit | ae06676815e24a27549e0c79a74bc81c77822554 (patch) | |
tree | cde88ea4e11a2f0809da857feaefa6824d4ba8fa /src/caja-window.c | |
parent | b00cccb74307a49df74deb785936e3cd9cf3a5ad (diff) | |
download | caja-ae06676815e24a27549e0c79a74bc81c77822554.tar.bz2 caja-ae06676815e24a27549e0c79a74bc81c77822554.tar.xz |
[src] fix some incompatible pointer type warnings
including a silly mistake in caja-window where destroy function's return type
was accidently ommitted during the addition of gtk version checks.
Diffstat (limited to 'src/caja-window.c')
-rw-r--r-- | src/caja-window.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/caja-window.c b/src/caja-window.c index 25003f6b..e351f007 100644 --- a/src/caja-window.c +++ b/src/caja-window.c @@ -191,12 +191,13 @@ caja_window_init (CajaWindow *window) #if GTK_CHECK_VERSION(3, 0, 0) gtk_quit_add_destroy (1, GTK_WIDGET (window)); -#else - gtk_quit_add_destroy (1, GTK_OBJECT (window)); -#endif /* Keep the main event loop alive as long as the window exists */ caja_main_event_loop_register (GTK_WIDGET (window)); +#else + gtk_quit_add_destroy (1, GTK_OBJECT (window)); + caja_main_event_loop_register (GTK_OBJECT (window)); +#endif } /* Unconditionally synchronize the GtkUIManager of WINDOW. */ @@ -613,6 +614,7 @@ free_stored_viewers (CajaWindow *window) window->details->extra_viewer = NULL; } +static void #if GTK_CHECK_VERSION (3, 0, 0) caja_window_destroy (GtkWidget *object) #else @@ -626,7 +628,7 @@ caja_window_destroy (GtkObject *object) /* close all panes safely */ panes_copy = g_list_copy (window->details->panes); - g_list_free_full (panes_copy, caja_window_close_pane); + g_list_free_full (panes_copy, (GDestroyNotify) caja_window_close_pane); /* the panes list should now be empty */ g_assert (window->details->panes == NULL); @@ -2156,7 +2158,7 @@ caja_window_class_init (CajaWindowClass *class) #endif GTK_WIDGET_CLASS (class)->show = caja_window_show; -#if GTK_CHECK_VERSION(3,0,0) +#if GTK_CHECK_VERSION (3,0,0) GTK_WIDGET_CLASS (class)->get_preferred_width = caja_window_get_preferred_width; GTK_WIDGET_CLASS (class)->get_preferred_height = caja_window_get_preferred_height; #else |