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:
parent
52928e04a5
commit
206bc06eab
1 changed files with 1 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue