From 33fb67bcdbe4e688bd8eb0ec9e6da49a38e52dfc Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Mon, 28 Jun 2004 10:13:33 +0000 Subject: [PATCH] added missing return value. 2004-06-28 Sven Neumann * app/actions/actions.c (action_select_object): added missing return value. --- ChangeLog | 8 +++++++- app/actions/actions.c | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 23711281d2..a84a22ec51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,13 @@ +2004-06-28 Sven Neumann + + * app/actions/actions.c (action_select_object): added missing + return value. + 2004-06-28 Sven Neumann * plug-ins/common/dog.c: applied HIG rules to the GUI and slightly - rearranged it to get a more compact layout. Applied GIMP coding style. + rearranged it to get a more compact layout. Applied GIMP coding + style. 2004-06-28 Sven Neumann diff --git a/app/actions/actions.c b/app/actions/actions.c index 12124737d5..8cb847f72e 100644 --- a/app/actions/actions.c +++ b/app/actions/actions.c @@ -400,7 +400,7 @@ action_select_object (GimpActionSelectType select_type, n_children = gimp_container_num_children (container); if (n_children == 0) - return; + return NULL; switch (select_type) {