libgimpcolor, libgimpconfig: remove deprecated interface functions
Remove the deprectaed foo_interface_get_type() functions, as per the last two commits.
This commit is contained in:
parent
5f8643a6ee
commit
e47ffefab2
6 changed files with 5 additions and 25 deletions
|
|
@ -22,7 +22,6 @@ EXPORTS
|
|||
gimp_color_managed_get_color_profile
|
||||
gimp_color_managed_get_icc_profile
|
||||
gimp_color_managed_get_type
|
||||
gimp_color_managed_interface_get_type
|
||||
gimp_color_managed_profile_changed
|
||||
gimp_color_profile_get_copyright
|
||||
gimp_color_profile_get_description
|
||||
|
|
|
|||
|
|
@ -55,12 +55,6 @@ static guint gimp_color_managed_signals[LAST_SIGNAL] = { 0 };
|
|||
/* private functions */
|
||||
|
||||
|
||||
GType
|
||||
gimp_color_managed_interface_get_type (void)
|
||||
{
|
||||
return gimp_color_managed_get_type ();
|
||||
}
|
||||
|
||||
static void
|
||||
gimp_color_managed_default_init (GimpColorManagedInterface *iface)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -55,16 +55,13 @@ struct _GimpColorManagedInterface
|
|||
};
|
||||
|
||||
|
||||
GType gimp_color_managed_get_type (void) G_GNUC_CONST;
|
||||
GType gimp_color_managed_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GIMP_DEPRECATED_FOR (gimp_color_managed_get_type)
|
||||
GType gimp_color_managed_interface_get_type (void) G_GNUC_CONST;
|
||||
const guint8 * gimp_color_managed_get_icc_profile (GimpColorManaged *managed,
|
||||
gsize *len);
|
||||
GimpColorProfile * gimp_color_managed_get_color_profile (GimpColorManaged *managed);
|
||||
|
||||
const guint8 * gimp_color_managed_get_icc_profile (GimpColorManaged *managed,
|
||||
gsize *len);
|
||||
GimpColorProfile * gimp_color_managed_get_color_profile (GimpColorManaged *managed);
|
||||
|
||||
void gimp_color_managed_profile_changed (GimpColorManaged *managed);
|
||||
void gimp_color_managed_profile_changed (GimpColorManaged *managed);
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
|
|
|||
|
|
@ -105,12 +105,6 @@ gimp_config_get_type (void)
|
|||
return config_iface_type;
|
||||
}
|
||||
|
||||
GType
|
||||
gimp_config_interface_get_type (void)
|
||||
{
|
||||
return gimp_config_get_type ();
|
||||
}
|
||||
|
||||
static void
|
||||
gimp_config_iface_default_init (GimpConfigInterface *iface)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -73,9 +73,6 @@ struct _GimpConfigInterface
|
|||
|
||||
GType gimp_config_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GIMP_DEPRECATED_FOR (gimp_config_get_type)
|
||||
GType gimp_config_interface_get_type (void) G_GNUC_CONST;
|
||||
|
||||
gboolean gimp_config_serialize_to_file (GimpConfig *config,
|
||||
const gchar *filename,
|
||||
const gchar *header,
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ EXPORTS
|
|||
gimp_config_duplicate
|
||||
gimp_config_error_quark
|
||||
gimp_config_get_type
|
||||
gimp_config_interface_get_type
|
||||
gimp_config_is_equal_to
|
||||
gimp_config_path_expand
|
||||
gimp_config_path_expand_to_files
|
||||
|
|
|
|||
Loading…
Reference in a new issue