aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-web-view.c
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2013-10-31 01:18:55 +0800
committerKjartan Maraas <kmaraas@gnome.org>2014-01-22 03:10:47 +0800
commit51b3d7a000b3c5ff9ebadaaf6ea42857b888c483 (patch)
tree7bdcb61ec19ce946f1a586677dc6bb6f74bb602b /e-util/e-web-view.c
parent93e98a60f6e7490739ad45d65169efcf626328c1 (diff)
downloadgsoc2013-evolution-51b3d7a000b3c5ff9ebadaaf6ea42857b888c483.tar
gsoc2013-evolution-51b3d7a000b3c5ff9ebadaaf6ea42857b888c483.tar.gz
gsoc2013-evolution-51b3d7a000b3c5ff9ebadaaf6ea42857b888c483.tar.bz2
gsoc2013-evolution-51b3d7a000b3c5ff9ebadaaf6ea42857b888c483.tar.lz
gsoc2013-evolution-51b3d7a000b3c5ff9ebadaaf6ea42857b888c483.tar.xz
gsoc2013-evolution-51b3d7a000b3c5ff9ebadaaf6ea42857b888c483.tar.zst
gsoc2013-evolution-51b3d7a000b3c5ff9ebadaaf6ea42857b888c483.zip
Fix return values in a few functions
Diffstat (limited to 'e-util/e-web-view.c')
-rw-r--r--e-util/e-web-view.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c
index 5269b28a4b..faf57a5f31 100644
--- a/e-util/e-web-view.c
+++ b/e-util/e-web-view.c
@@ -2170,7 +2170,7 @@ e_web_view_set_cursor_image_src (EWebView *web_view,
GtkAction *
e_web_view_get_open_proxy (EWebView *web_view)
{
- g_return_val_if_fail (E_IS_WEB_VIEW (web_view), FALSE);
+ g_return_val_if_fail (E_IS_WEB_VIEW (web_view), NULL);
return web_view->priv->open_proxy;
}
@@ -2209,7 +2209,7 @@ e_web_view_get_paste_target_list (EWebView *web_view)
GtkAction *
e_web_view_get_print_proxy (EWebView *web_view)
{
- g_return_val_if_fail (E_IS_WEB_VIEW (web_view), FALSE);
+ g_return_val_if_fail (E_IS_WEB_VIEW (web_view), NULL);
return web_view->priv->print_proxy;
}
@@ -2239,7 +2239,7 @@ e_web_view_set_print_proxy (EWebView *web_view,
GtkAction *
e_web_view_get_save_as_proxy (EWebView *web_view)
{
- g_return_val_if_fail (E_IS_WEB_VIEW (web_view), FALSE);
+ g_return_val_if_fail (E_IS_WEB_VIEW (web_view), NULL);
return web_view->priv->save_as_proxy;
}