renamed GIMP_PARAM_ #defines to GIMP_CONFIG_PARAM_.
2005-02-05 Sven Neumann <sven@gimp.org> * libgimpconfig/gimpconfig-params.h: renamed GIMP_PARAM_ #defines to GIMP_CONFIG_PARAM_. * app/config/gimpbaseconfig.c * app/config/gimpconfig-dump.c * app/config/gimpcoreconfig.c * app/config/gimpdisplayconfig.c * app/config/gimpguiconfig.c * app/config/gimprc-deserialize.c * app/config/gimprc-serialize.c * app/config/gimprc.c * app/core/gimp.c * app/core/gimpstrokedesc.c * app/dialogs/preferences-dialog.c * app/text/gimptext.c * app/tools/gimptextoptions.c * libgimpconfig/gimpconfig-deserialize.c * libgimpconfig/gimpconfig-iface.c * libgimpconfig/gimpconfig-serialize.c * libgimpconfig/gimpconfig-utils.c: changed accordingly. * libgimpmodule/gimpmoduletypes.h: deprecate the GIMP_MODULE_PARAM_SERIALIZE #define, GIMP_CONFIG_PARAM_SERIALIZE should be used instead. * modules/controller_linux_input.c * modules/controller_midi.c: changed accordingly.
This commit is contained in:
committed by
Sven Neumann
parent
d44700a1d1
commit
692669f4d8
@ -50,7 +50,7 @@ gimp_config_diff_property (GObject *a,
|
||||
|
||||
if (g_param_values_cmp (prop_spec, &a_value, &b_value))
|
||||
{
|
||||
if ((prop_spec->flags & GIMP_PARAM_AGGREGATE) &&
|
||||
if ((prop_spec->flags & GIMP_CONFIG_PARAM_AGGREGATE) &&
|
||||
G_IS_PARAM_SPEC_OBJECT (prop_spec) &&
|
||||
g_type_interface_peek (g_type_class_peek (prop_spec->value_type),
|
||||
GIMP_TYPE_CONFIG))
|
||||
@ -282,8 +282,8 @@ gimp_config_reset_properties (GimpConfig *config)
|
||||
{
|
||||
if (G_IS_PARAM_SPEC_OBJECT (prop_spec))
|
||||
{
|
||||
if ((prop_spec->flags & GIMP_PARAM_SERIALIZE) &&
|
||||
(prop_spec->flags & GIMP_PARAM_AGGREGATE) &&
|
||||
if ((prop_spec->flags & GIMP_CONFIG_PARAM_SERIALIZE) &&
|
||||
(prop_spec->flags & GIMP_CONFIG_PARAM_AGGREGATE) &&
|
||||
g_type_interface_peek (g_type_class_peek (prop_spec->value_type),
|
||||
GIMP_TYPE_CONFIG))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user