diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2021-01-30 13:03:44 +0100 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2021-01-30 13:18:58 +0100 |
commit | d6ea5dd2eb7c1f173dd1b465197ce06b453bcc1a (patch) | |
tree | c7166329d0a20cc224018872cf386deef924585c /vapi/gio-2.0.vapi | |
parent | d4ec8773bd370f9db5227c6c5c04f6b824925e25 (diff) | |
download | vala-d6ea5dd2eb7c1f173dd1b465197ce06b453bcc1a.tar.gz |
gio-2.0: Pick up missing invoker for some AppInfo/File.*() methods
Diffstat (limited to 'vapi/gio-2.0.vapi')
-rw-r--r-- | vapi/gio-2.0.vapi | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/vapi/gio-2.0.vapi b/vapi/gio-2.0.vapi index 5c1f6d57d..cf91bc498 100644 --- a/vapi/gio-2.0.vapi +++ b/vapi/gio-2.0.vapi @@ -3337,14 +3337,13 @@ namespace GLib { public abstract bool equal (GLib.AppInfo appinfo2); public static GLib.List<GLib.AppInfo> get_all (); public static GLib.List<GLib.AppInfo> get_all_for_type (string content_type); - [NoWrapper] - public abstract unowned string get_commandline (); + [Version (since = "2.20")] + public abstract unowned string? get_commandline (); public static GLib.AppInfo? get_default_for_type (string content_type, bool must_support_uris); public static GLib.AppInfo? get_default_for_uri_scheme (string uri_scheme); public abstract unowned string? get_description (); [Version (since = "2.24")] public abstract unowned string get_display_name (); - [NoWrapper] public abstract unowned string get_executable (); [Version (since = "2.28")] public static GLib.List<GLib.AppInfo> get_fallback_for_type (string content_type); @@ -3612,15 +3611,12 @@ namespace GLib { public abstract bool equal (GLib.File file2); public abstract GLib.Mount find_enclosing_mount (GLib.Cancellable? cancellable = null) throws GLib.Error; public virtual async GLib.Mount find_enclosing_mount_async (int io_priority = GLib.Priority.DEFAULT, GLib.Cancellable? cancellable = null) throws GLib.Error; - [NoWrapper] public abstract string? get_basename (); public GLib.File get_child (string name); public abstract GLib.File get_child_for_display_name (string display_name) throws GLib.Error; public abstract GLib.File? get_parent (); public abstract string get_parse_name (); - [NoWrapper] public abstract string? get_path (); - [NoWrapper] public abstract string? get_relative_path (GLib.File descendant); public abstract string get_uri (); public abstract string? get_uri_scheme (); |