app: update babl API usage

The space constructor from icc profile is now name spaced in the same
prefix as all the other space constructors in babl.
This commit is contained in:
Øyvind Kolås 2018-07-16 19:01:45 +02:00
parent ac5f44eb74
commit e707e55f82
1 changed files with 1 additions and 1 deletions

View File

@ -1476,7 +1476,7 @@ gimp_color_profile_get_space (GimpColorProfile *profile,
g_return_val_if_fail (GIMP_IS_COLOR_PROFILE (profile), NULL);
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
space = babl_icc_make_space ((const gchar *) profile->priv->data,
space = babl_space_from_icc ((const gchar *) profile->priv->data,
profile->priv->length,
(BablIccIntent) intent,
&babl_error);