libgimpbase: improve warning when a string can't be converted to a GimpUnit

This commit is contained in:
Michael Natterer
2012-10-04 22:53:14 +02:00
parent fd4e220c28
commit 38a8e67e03

View File

@ -109,7 +109,7 @@ string_to_unit (const GValue *src_value,
return;
error:
g_warning ("Can't convert string to GimpUnit.");
g_warning ("Can't convert string '%s' to GimpUnit.", str);
}