aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWang Xin <jedy.wang@sun.com>2010-01-15 11:26:53 +0800
committerWang Xin <jedy.wang@sun.com>2010-01-15 11:26:53 +0800
commitd37784ed3db20fd74ea4b8d9fdfe58518370cea2 (patch)
tree342aea29033c3ab24a88c247bfdf5a3f7f573132
parent87dc7a11c30a06c872e81d9c38308f4e6f2d685e (diff)
downloadgsoc2013-evolution-d37784ed3db20fd74ea4b8d9fdfe58518370cea2.tar
gsoc2013-evolution-d37784ed3db20fd74ea4b8d9fdfe58518370cea2.tar.gz
gsoc2013-evolution-d37784ed3db20fd74ea4b8d9fdfe58518370cea2.tar.bz2
gsoc2013-evolution-d37784ed3db20fd74ea4b8d9fdfe58518370cea2.tar.lz
gsoc2013-evolution-d37784ed3db20fd74ea4b8d9fdfe58518370cea2.tar.xz
gsoc2013-evolution-d37784ed3db20fd74ea4b8d9fdfe58518370cea2.tar.zst
gsoc2013-evolution-d37784ed3db20fd74ea4b8d9fdfe58518370cea2.zip
Fixes #606937 - void function should not have a return value.
-rw-r--r--widgets/misc/e-selectable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-selectable.c b/widgets/misc/e-selectable.c
index 95cd2bb06f..bb5948cc13 100644
--- a/widgets/misc/e-selectable.c
+++ b/widgets/misc/e-selectable.c
@@ -62,7 +62,7 @@ e_selectable_update_actions (ESelectable *selectable,
interface = E_SELECTABLE_GET_INTERFACE (selectable);
g_return_if_fail (interface->update_actions != NULL);
- return interface->update_actions (
+ interface->update_actions (
selectable, focus_tracker,
clipboard_targets, n_clipboard_targets);
}