mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 09:23:24 +00:00
libgimpwidgets: fix undeclared identifier.
Build for macOS on CI breaks with: > ../gimp3-2.99.19/libgimpwidgets/gimppickbutton-quartz.c:210:45: error: use of undeclared identifier 'monitor_profile' > space = gimp_color_profile_get_space (monitor_profile,
This commit is contained in:
parent
ef9de3c263
commit
9a353b9db9
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@
|
||||||
|
|
||||||
if (profile)
|
if (profile)
|
||||||
{
|
{
|
||||||
space = gimp_color_profile_get_space (monitor_profile,
|
space = gimp_color_profile_get_space (profile,
|
||||||
GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL,
|
GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL,
|
||||||
NULL);
|
NULL);
|
||||||
g_object_unref (profile);
|
g_object_unref (profile);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue