mirror of https://github.com/GNOME/gimp.git
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:
parent
a0a7711502
commit
33fb67bcdb
|
@ -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>
|
||||
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue