diff options
author | Nelson Marques <[email protected]> | 2012-11-25 00:52:02 +0000 |
---|---|---|
committer | Nelson Marques <[email protected]> | 2012-11-25 00:52:02 +0000 |
commit | b09188cc05463cdc54f4fbcf8d478ae471092179 (patch) | |
tree | b20e66f2371fe02cc60a708a7a14f61cb1b1ee2e /src | |
parent | f6f5c1bb6d060aff5fb334017c640733675c2ae2 (diff) | |
download | caja-b09188cc05463cdc54f4fbcf8d478ae471092179.tar.bz2 caja-b09188cc05463cdc54f4fbcf8d478ae471092179.tar.xz |
fix no-return-in-nonvoid-function caja-window.c
Diffstat (limited to 'src')
-rw-r--r-- | src/caja-window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/caja-window.c b/src/caja-window.c index e351f007..f72253c5 100644 --- a/src/caja-window.c +++ b/src/caja-window.c @@ -616,8 +616,10 @@ free_stored_viewers (CajaWindow *window) static void #if GTK_CHECK_VERSION (3, 0, 0) +static void caja_window_destroy (GtkWidget *object) #else +static void caja_window_destroy (GtkObject *object) #endif { |