diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2020-06-07 15:29:07 +0200 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2020-06-07 15:29:22 +0200 |
commit | 839bc4f013bc881a7cabbcc39a5de399342dbf6f (patch) | |
tree | a535d147af81bbbddfb0f2e19e0ea4a4097f9721 /vapi/gio-2.0.vapi | |
parent | 0ef09114b09e2671fd0c9cdfec2033ee092fef62 (diff) | |
download | vala-839bc4f013bc881a7cabbcc39a5de399342dbf6f.tar.gz |
vapi: Update GIR-based bindings
Diffstat (limited to 'vapi/gio-2.0.vapi')
-rw-r--r-- | vapi/gio-2.0.vapi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vapi/gio-2.0.vapi b/vapi/gio-2.0.vapi index 2c60193f9..2b64455b6 100644 --- a/vapi/gio-2.0.vapi +++ b/vapi/gio-2.0.vapi @@ -1206,7 +1206,7 @@ namespace GLib { [CCode (has_construct_function = false)] public FileAttributeMatcher (string attributes); public bool enumerate_namespace (string ns); - public unowned string enumerate_next (); + public unowned string? enumerate_next (); public bool matches (string attribute); public bool matches_only (string attribute); public unowned GLib.FileAttributeMatcher @ref (); @@ -1272,22 +1272,22 @@ namespace GLib { public GLib.FileInfo dup (); public string? get_attribute_as_string (string attribute); public bool get_attribute_boolean (string attribute); - public unowned string get_attribute_byte_string (string attribute); + public unowned string? get_attribute_byte_string (string attribute); public bool get_attribute_data (string attribute, out GLib.FileAttributeType type, out void* value_pp, out GLib.FileAttributeStatus status); public int32 get_attribute_int32 (string attribute); public int64 get_attribute_int64 (string attribute); - public unowned GLib.Object get_attribute_object (string attribute); + public unowned GLib.Object? get_attribute_object (string attribute); public GLib.FileAttributeStatus get_attribute_status (string attribute); - public unowned string get_attribute_string (string attribute); + public unowned string? get_attribute_string (string attribute); [CCode (array_length = false, array_null_terminated = true)] [Version (since = "2.22")] - public unowned string[] get_attribute_stringv (string attribute); + public unowned string[]? get_attribute_stringv (string attribute); public GLib.FileAttributeType get_attribute_type (string attribute); public uint32 get_attribute_uint32 (string attribute); public uint64 get_attribute_uint64 (string attribute); - public unowned string get_content_type (); + public unowned string? get_content_type (); [Version (since = "2.36")] - public GLib.DateTime get_deletion_date (); + public GLib.DateTime? get_deletion_date (); public unowned string get_display_name (); public unowned string get_edit_name (); public unowned string get_etag (); @@ -2962,7 +2962,7 @@ namespace GLib { public ThreadedSocketService (int max_threads); [NoAccessorMethod] public int max_threads { get; construct; } - public virtual signal bool run (GLib.SocketConnection connection, GLib.Object source_object); + public virtual signal bool run (GLib.SocketConnection connection, GLib.Object? source_object); } [CCode (cheader_filename = "gio/gio.h", type_id = "g_tls_certificate_get_type ()")] [Version (since = "2.28")] |