mirror of https://github.com/GNOME/gimp.git
don't return stuff from a void function (spotted by Jimmer on #gimp).
2003-07-11 Michael Natterer <mitch@gimp.org> * app/config/gimpconfig.c (gimp_config_reset): don't return stuff from a void function (spotted by Jimmer on #gimp). Removed trailing whitespace.
This commit is contained in:
parent
7e644f8256
commit
947df71427
|
@ -1,3 +1,9 @@
|
||||||
|
2003-07-11 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* app/config/gimpconfig.c (gimp_config_reset): don't return stuff
|
||||||
|
from a void function (spotted by Jimmer on #gimp). Removed
|
||||||
|
trailing whitespace.
|
||||||
|
|
||||||
2003-07-11 Michael Natterer <mitch@gimp.org>
|
2003-07-11 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/gui/user-install-dialog.c: lots of purely cosmetic stuff
|
* app/gui/user-install-dialog.c: lots of purely cosmetic stuff
|
||||||
|
|
|
@ -489,7 +489,7 @@ gimp_config_reset (GObject *object)
|
||||||
|
|
||||||
g_return_if_fail (gimp_config_iface != NULL);
|
g_return_if_fail (gimp_config_iface != NULL);
|
||||||
|
|
||||||
return gimp_config_iface->reset (object);
|
gimp_config_iface->reset (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -489,7 +489,7 @@ gimp_config_reset (GObject *object)
|
||||||
|
|
||||||
g_return_if_fail (gimp_config_iface != NULL);
|
g_return_if_fail (gimp_config_iface != NULL);
|
||||||
|
|
||||||
return gimp_config_iface->reset (object);
|
gimp_config_iface->reset (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue