]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
rest-0.6: Mark the new_call method as virtual
authorMichal Hruby <michal.mhr@gmail.com>
Mon, 21 Feb 2011 20:47:40 +0000 (21:47 +0100)
committerMichal Hruby <michal.mhr@gmail.com>
Mon, 21 Feb 2011 20:47:40 +0000 (21:47 +0100)
vapi/packages/rest-0.6/rest-0.6-custom.vala
vapi/rest-0.6.vapi

index ee8d60d062d455871fc34c3ae76f2751d17e7906..d47d0cb856e065839be68d1cf1a8675c6bbcc4cf 100644 (file)
@@ -1,7 +1,7 @@
 namespace Rest {
        [CCode (cheader_filename = "rest/rest-proxy.h")]
        public class Proxy {
-               public Rest.ProxyCall new_call ();
+               public virtual Rest.ProxyCall new_call ();
        }
 
        [CCode (cname = "OAuthProxy", cheader_filename = "rest/oauth-proxy.h")]
index bd91c0000a166cb57d6c8268381a06259afcebca..4133a001e180b198da8c93f57a6f0f2da201e738 100644 (file)
@@ -52,7 +52,7 @@ namespace Rest {
                public virtual bool bind_valist (void* @params);
                public static GLib.Quark error_quark ();
                public unowned string get_user_agent ();
-               public Rest.ProxyCall new_call ();
+               public virtual Rest.ProxyCall new_call ();
                public void set_user_agent (string user_agent);
                public bool simple_run (string payload, int64 len) throws GLib.Error;
                public virtual bool simple_run_valist (string payload, int64 len, void* @params) throws GLib.Error;