[vala] rest-0.6: Fix OAuthProxyCall



commit 8cfef8973f37c10df77d71c2245efea9d6c75ca2
Author: Adrien Bustany <abustany gnome org>
Date:   Thu Jun 24 17:20:30 2010 +0200

    rest-0.6: Fix OAuthProxyCall
    
    This commit properly tags OAuthProxyCall as a subclass of Rest.ProxyCall

 vapi/packages/rest-0.6/rest-0.6-custom.vala |    8 ++++++--
 vapi/rest-0.6.vapi                          |    3 +--
 2 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/vapi/packages/rest-0.6/rest-0.6-custom.vala b/vapi/packages/rest-0.6/rest-0.6-custom.vala
index 3a19269..ac95972 100644
--- a/vapi/packages/rest-0.6/rest-0.6-custom.vala
+++ b/vapi/packages/rest-0.6/rest-0.6-custom.vala
@@ -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 {
+	}
 }
 
diff --git a/vapi/rest-0.6.vapi b/vapi/rest-0.6.vapi
index 3ad53d6..401dce7 100644
--- a/vapi/rest-0.6.vapi
+++ b/vapi/rest-0.6.vapi
@@ -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 {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]