After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 764259 - ClutterGst.init_with_args 'entries' param should be array; translation_domain nullable.
ClutterGst.init_with_args 'entries' param should be array; translation_domai...
Status: RESOLVED FIXED
Product: vala
Classification: Core
Component: Bindings
0.30.x
Other All
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2016-03-27 15:29 UTC by Isaac W Hanson
Modified: 2016-09-14 14:41 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Isaac W Hanson 2016-03-27 15:29:28 UTC
ClutterGst init_with_args 'entries' parameter should be nullable struct array;  'translation_domain' should be nullable string.  

Currently both defined as non-nullable, entries defined as non-array.


Should be?:
[CCode (array_length = false)] GLib.OptionEntry[]? entries, string? translation_domain

not
GLib.OptionEntry entries, string translation_domain