diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-07-07 04:53:54 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-07-07 04:53:54 +0800 |
commit | bcdd93e6b16b930b6c00def2f82aae9a78fc3600 (patch) | |
tree | 075ce81b1f6e9004b30e30d8ebd61e1056e33414 | |
parent | 72f93103b9a052d013c2b8d2fbf180f51e2d0489 (diff) | |
download | gsoc2013-epiphany-bcdd93e6b16b930b6c00def2f82aae9a78fc3600.tar gsoc2013-epiphany-bcdd93e6b16b930b6c00def2f82aae9a78fc3600.tar.gz gsoc2013-epiphany-bcdd93e6b16b930b6c00def2f82aae9a78fc3600.tar.bz2 gsoc2013-epiphany-bcdd93e6b16b930b6c00def2f82aae9a78fc3600.tar.lz gsoc2013-epiphany-bcdd93e6b16b930b6c00def2f82aae9a78fc3600.tar.xz gsoc2013-epiphany-bcdd93e6b16b930b6c00def2f82aae9a78fc3600.tar.zst gsoc2013-epiphany-bcdd93e6b16b930b6c00def2f82aae9a78fc3600.zip |
Fix compiler warning.
2006-07-06 Christian Persch <chpe@cvs.gnome.org>
* src/window-commands.c:
Fix compiler warning.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/window-commands.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2006-07-06 Christian Persch <chpe@cvs.gnome.org> + * src/window-commands.c: + + Fix compiler warning. + +2006-07-06 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphyFind.cpp: * embed/mozilla/EphyFind.h: diff --git a/src/window-commands.c b/src/window-commands.c index 051115db3..471d72d5d 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -83,7 +83,7 @@ window_cmd_file_print_setup (GtkAction *action, (GTK_WINDOW (window), ephy_embed_shell_get_page_setup (shell), ephy_embed_shell_get_print_settings (shell), - page_setup_done_cb, + (GtkPageSetupDoneFunc) page_setup_done_cb, shell); } |