app: fix Gimp-Config warning Can't tell anything about a gint64.

When running gimp-console-2.99.exe --dump-gimprc-system we get two
warnings:
(gimp-console-2.99.exe:23000): Gimp-Config-WARNING **: 16:08:29.604:
 FIXME: Can't tell anything about a gint64.

Let's fix this by adding G_TYPE_INT64 as a known integer value.
This commit is contained in:
Jacob Boerema 2021-09-29 16:45:10 -04:00
parent 52928e04a5
commit 206bc06eab

View file

@ -528,6 +528,7 @@ dump_describe_param (GParamSpec *param_spec)
case G_TYPE_UINT:
case G_TYPE_LONG:
case G_TYPE_ULONG:
case G_TYPE_INT64:
values = "This is an integer value.";
break;
case G_TYPE_FLOAT: