[libsoup] introspection: Fix warnings



commit b6db9e325502e738612d11f42310158631f8d94c
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Thu May 24 09:53:22 2012 -0400

    introspection: Fix warnings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676742

 libsoup/soup-auth.h       |    2 +-
 libsoup/soup-cookie-jar.c |    2 +-
 libsoup/soup-message.c    |    6 +++---
 libsoup/soup-server.c     |    8 ++++----
 4 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/libsoup/soup-auth.h b/libsoup/soup-auth.h
index 0a26e8c..18f11c7 100644
--- a/libsoup/soup-auth.h
+++ b/libsoup/soup-auth.h
@@ -32,7 +32,7 @@ typedef struct {
 
 	gboolean     (*update)               (SoupAuth      *auth,
 					      SoupMessage   *msg,
-					      GHashTable    *auth_params);
+					      GHashTable    *auth_header);
 
 	GSList *     (*get_protection_space) (SoupAuth      *auth,
 					      SoupURI       *source_uri);
diff --git a/libsoup/soup-cookie-jar.c b/libsoup/soup-cookie-jar.c
index 6dd9d85..6d95cf0 100644
--- a/libsoup/soup-cookie-jar.c
+++ b/libsoup/soup-cookie-jar.c
@@ -128,7 +128,7 @@ soup_cookie_jar_class_init (SoupCookieJarClass *jar_class)
 	jar_class->is_persistent = is_persistent;
 
 	/**
-	 * SoupCookieJar::changed
+	 * SoupCookieJar::changed:
 	 * @jar: the #SoupCookieJar
 	 * @old_cookie: the old #SoupCookie value
 	 * @new_cookie: the new #SoupCookie value
diff --git a/libsoup/soup-message.c b/libsoup/soup-message.c
index c70a954..a12a44e 100644
--- a/libsoup/soup-message.c
+++ b/libsoup/soup-message.c
@@ -500,7 +500,7 @@ soup_message_class_init (SoupMessageClass *message_class)
 	 * @msg: the message
 	 * @event: the network event
 	 * @connection: the current state of the network connection
-
+	 *
 	 * Emitted to indicate that some network-related event
 	 * related to @msg has occurred. This essentially proxies the
 	 * #GSocketClient::event signal, but only for events that
@@ -728,7 +728,7 @@ soup_message_class_init (SoupMessageClass *message_class)
 	 * Since: 2.34
 	 **/
 	/**
-	 * SoupMessage:tls-certificate:
+	 * SoupMessage:tls-errors:
 	 *
 	 * The verification errors on #SoupMessage:tls-certificate
 	 *
@@ -1113,7 +1113,7 @@ soup_message_got_body (SoupMessage *msg)
 /**
  * soup_message_content_sniffed:
  * @msg: a #SoupMessage
- * @type: a string with the sniffed content type
+ * @content_type: a string with the sniffed content type
  * @params: a #GHashTable with the parameters
  *
  * Emits the %content_sniffed signal, indicating that the IO layer
diff --git a/libsoup/soup-server.c b/libsoup/soup-server.c
index f4b7f41..26bfcdf 100644
--- a/libsoup/soup-server.c
+++ b/libsoup/soup-server.c
@@ -236,7 +236,7 @@ soup_server_class_init (SoupServerClass *server_class)
 	/* signals */
 
 	/**
-	 * SoupServer::request-started
+	 * SoupServer::request-started:
 	 * @server: the server
 	 * @message: the new message
 	 * @client: the client context
@@ -265,7 +265,7 @@ soup_server_class_init (SoupServerClass *server_class)
 			      SOUP_TYPE_CLIENT_CONTEXT);
 
 	/**
-	 * SoupServer::request-read
+	 * SoupServer::request-read:
 	 * @server: the server
 	 * @message: the message
 	 * @client: the client context
@@ -290,7 +290,7 @@ soup_server_class_init (SoupServerClass *server_class)
 			      SOUP_TYPE_CLIENT_CONTEXT);
 
 	/**
-	 * SoupServer::request-finished
+	 * SoupServer::request-finished:
 	 * @server: the server
 	 * @message: the message
 	 * @client: the client context
@@ -310,7 +310,7 @@ soup_server_class_init (SoupServerClass *server_class)
 			      SOUP_TYPE_CLIENT_CONTEXT);
 
 	/**
-	 * SoupServer::request-aborted
+	 * SoupServer::request-aborted:
 	 * @server: the server
 	 * @message: the message
 	 * @client: the client context



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