summaryrefslogtreecommitdiff
path: root/vapi/gdk-pixbuf-2.0.vapi
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2021-01-30 11:44:17 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2021-01-30 11:44:17 +0100
commitd4ec8773bd370f9db5227c6c5c04f6b824925e25 (patch)
treed188d94ba58009ead5a6de14a27e24049144d1be /vapi/gdk-pixbuf-2.0.vapi
parent39458e862df3021982745d59d8dc3c09af471063 (diff)
downloadvala-d4ec8773bd370f9db5227c6c5c04f6b824925e25.tar.gz
gdk-pixbuf-2.0: Fix Pixbuf.save_to_streamv_async()
Diffstat (limited to 'vapi/gdk-pixbuf-2.0.vapi')
-rw-r--r--vapi/gdk-pixbuf-2.0.vapi3
1 files changed, 2 insertions, 1 deletions
diff --git a/vapi/gdk-pixbuf-2.0.vapi b/vapi/gdk-pixbuf-2.0.vapi
index 9eaaadb0d..a4f0de7e9 100644
--- a/vapi/gdk-pixbuf-2.0.vapi
+++ b/vapi/gdk-pixbuf-2.0.vapi
@@ -110,8 +110,9 @@ namespace Gdk {
public async void save_to_stream_async (GLib.OutputStream stream, string type, GLib.Cancellable? cancellable = null, ...) throws GLib.Error;
[Version (since = "2.36")]
public bool save_to_streamv (GLib.OutputStream stream, string type, [CCode (array_length = false, array_null_terminated = true)] string[] option_keys, [CCode (array_length = false, array_null_terminated = true)] string[] option_values, GLib.Cancellable? cancellable = null) throws GLib.Error;
+ [CCode (finish_instance = false, finish_name = "gdk_pixbuf_save_to_stream_finish")]
[Version (since = "2.36")]
- public async void save_to_streamv_async (GLib.OutputStream stream, string type, [CCode (array_length = false, array_null_terminated = true)] string[] option_keys, [CCode (array_length = false, array_null_terminated = true)] string[] option_values, GLib.Cancellable? cancellable = null);
+ public async void save_to_streamv_async (GLib.OutputStream stream, string type, [CCode (array_length = false, array_null_terminated = true)] string[] option_keys, [CCode (array_length = false, array_null_terminated = true)] string[] option_values, GLib.Cancellable? cancellable = null) throws GLib.Error;
public bool savev (string filename, string type, [CCode (array_length = false, array_null_terminated = true)] string[] option_keys, [CCode (array_length = false, array_null_terminated = true)] string[] option_values) throws GLib.Error;
public void scale (Gdk.Pixbuf dest, int dest_x, int dest_y, int dest_width, int dest_height, double offset_x, double offset_y, double scale_x, double scale_y, Gdk.InterpType interp_type);
public Gdk.Pixbuf? scale_simple (int dest_width, int dest_height, Gdk.InterpType interp_type);