summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPadraig O'Briain <padraigo@src.gnome.org>2001-05-24 08:41:23 +0000
committerPadraig O'Briain <padraigo@src.gnome.org>2001-05-24 08:41:23 +0000
commit00ac261d4d33297087611c3b02be2930127132b4 (patch)
tree9fab873abfec7cd2e784e642fe96d7762865bef0
parent6274c56be7c75bea224d55407d057fff497b3bdb (diff)
downloadatk-00ac261d4d33297087611c3b02be2930127132b4.tar.gz
atk/atkcomponent.c atk/atkvalue.c Remove return calls in functions which
* atk/atkcomponent.c atk/atkvalue.c Remove return calls in functions which return void
-rw-r--r--ChangeLog7
-rwxr-xr-xatk/atkcomponent.c2
-rwxr-xr-xatk/atkvalue.c2
3 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 313472b..d568095 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
-2001-05-23 Padraig O'Briain <padraigo@sun.com>
+2001-05-24 Padraig O'Briain <padraig.obriain@sun.com>
+
+ * atk/atkcomponent.c atk/atkvalue.c
+ Remove return calls in functions which return void
+
+2001-05-23 Padraig O'Briain <padraig.obriain@sun.com>
* atk/atkobject.h: Correct naming of role for status bar
* atk/atktext.c:
diff --git a/atk/atkcomponent.c b/atk/atkcomponent.c
index ecf45a3..83339b6 100755
--- a/atk/atkcomponent.c
+++ b/atk/atkcomponent.c
@@ -230,7 +230,7 @@ atk_component_get_position_on_screen (AtkComponent *component,
iface = ATK_COMPONENT_GET_IFACE (component);
if (iface->get_position_on_screen)
- return (iface->get_position_on_screen) (component, x, y);
+ (iface->get_position_on_screen) (component, x, y);
}
/**
diff --git a/atk/atkvalue.c b/atk/atkvalue.c
index 2370037..65464a8 100755
--- a/atk/atkvalue.c
+++ b/atk/atkvalue.c
@@ -117,7 +117,7 @@ atk_value_get_minimum_value (AtkValue *obj,
iface = ATK_VALUE_GET_IFACE (obj);
if (iface->get_minimum_value)
- return (iface->get_minimum_value) (obj, value);
+ (iface->get_minimum_value) (obj, value);
}
/**