]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
rest-0.6: Fix OAuthProxyCall
authorAdrien Bustany <abustany@gnome.org>
Thu, 24 Jun 2010 15:20:30 +0000 (17:20 +0200)
committerAdrien Bustany <abustany@gnome.org>
Thu, 24 Jun 2010 15:21:19 +0000 (17:21 +0200)
This commit properly tags OAuthProxyCall as a subclass of Rest.ProxyCall

vapi/packages/rest-0.6/rest-0.6-custom.vala
vapi/rest-0.6.vapi

index 3a192694c209b7388a6083a5bd853d4dfe7e9f4e..ac95972c20288044c1868b00c7604c5357af2f92 100644 (file)
@@ -13,7 +13,11 @@ namespace Rest {
        }
 
        [CCode (cheader_filename = "rest/oauth-proxy.h")]
-               public class OAuthProxy : Rest.Proxy {
-               }
+       public class OAuthProxy : Rest.Proxy {
+       }
+
+       [CCode (cheader_filename = "rest/oauth-proxy-call.h")]
+       public class OAuthProxyCall : Rest.ProxyCall {
+       }
 }
 
index 3ad53d6a03404f2e9ee1cfc5c2cee71214003e34..401dce70b4f0d305463fb4202405451d65429eca 100644 (file)
@@ -31,9 +31,8 @@ namespace Rest {
                [CCode (cname = "oauth_proxy_new_with_token", type = "RestProxy*", has_construct_function = false)]
                public OAuthProxy.with_token (string consumer_key, string consumer_secret, string token, string token_secret, string url_format, bool binding_required);
        }
-       [Compact]
        [CCode (cheader_filename = "rest/oauth-proxy-call.h")]
-       public class OAuthProxyCall {
+       public class OAuthProxyCall : Rest.ProxyCall {
        }
        [CCode (cheader_filename = "rest/rest-proxy.h")]
        public class Proxy : GLib.Object {