added missing return value.

2004-06-28  Sven Neumann  <sven@gimp.org>

	* app/actions/actions.c (action_select_object): added missing
	return value.
This commit is contained in:
Sven Neumann 2004-06-28 10:13:33 +00:00 committed by Sven Neumann
parent a0a7711502
commit 33fb67bcdb
2 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,13 @@
2004-06-28 Sven Neumann <sven@gimp.org>
* app/actions/actions.c (action_select_object): added missing
return value.
2004-06-28 Sven Neumann <sven@gimp.org>
* 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 <sven@gimp.org>

View File

@ -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)
{