[gimp] Bug 725169 - Add ICC profile copyright information to Image...
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 725169 - Add ICC profile copyright information to Image...
- Date: Tue, 25 Feb 2014 23:20:22 +0000 (UTC)
commit cd65cc57b25dac0682db74e9cca85647f3179798
Author: Elle Stone <ellestone ninedegreesbelow com>
Date: Mon Feb 24 14:13:19 2014 -0500
Bug 725169 - Add ICC profile copyright information to Image...
...Properties/Color Profile window
And improve the info of the bultin sRGB profile.
plug-ins/common/lcms.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/plug-ins/common/lcms.c b/plug-ins/common/lcms.c
index 937dffb..192adde 100644
--- a/plug-ins/common/lcms.c
+++ b/plug-ins/common/lcms.c
@@ -546,12 +546,12 @@ lcms_icc_profile_get_info (cmsHPROFILE profile)
gchar *descData;
gchar *info = NULL;
- descSize = cmsGetProfileInfoASCII (profile, cmsInfoModel,
+ descSize = cmsGetProfileInfoASCII (profile, cmsInfoCopyright,
"en", "US", NULL, 0);
if (descSize > 0)
{
descData = g_new (gchar, descSize + 1);
- descSize = cmsGetProfileInfoASCII (profile, cmsInfoModel,
+ descSize = cmsGetProfileInfoASCII (profile, cmsInfoCopyright,
"en", "US", descData, descSize);
if (descSize > 0)
info = gimp_any_to_utf8 (descData, -1, NULL);
@@ -726,8 +726,8 @@ lcms_icc_info (GimpColorConfig *config,
else
{
if (name) *name = g_strdup ("sRGB");
- if (desc) *desc = g_strdup ("sRGB made with the correct white point and primaries");
- if (info) *info = g_strdup (_("Default RGB working space"));
+ if (desc) *desc = g_strdup ("GIMP built-in sRGB");
+ if (info) *info = g_strdup (_("Default GIMP RGB working space"));
}
return GIMP_PDB_SUCCESS;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]