[libsoup] SoupConnection: drop "message" property
- From: Dan Winship <danw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsoup] SoupConnection: drop "message" property
- Date: Fri, 2 Nov 2012 19:31:18 +0000 (UTC)
commit 24087e3c48c1d2c56be31e85af7a3b89df291f20
Author: Dan Winship <danw gnome org>
Date: Wed Oct 24 13:08:33 2012 +0200
SoupConnection: drop "message" property
epiphany-extensions is dead, so there's no reason to support the
undocumented SoupConnection:message property for soup-fly any more.
libsoup/soup-connection.c | 16 ----------------
1 files changed, 0 insertions(+), 16 deletions(-)
---
diff --git a/libsoup/soup-connection.c b/libsoup/soup-connection.c
index 2caded1..e59ffad 100644
--- a/libsoup/soup-connection.c
+++ b/libsoup/soup-connection.c
@@ -60,7 +60,6 @@ enum {
PROP_TIMEOUT,
PROP_IDLE_TIMEOUT,
PROP_STATE,
- PROP_MESSAGE,
LAST_PROP
};
@@ -199,12 +198,6 @@ soup_connection_get_property (GObject *object, guint prop_id,
case PROP_STATE:
g_value_set_enum (value, priv->state);
break;
- case PROP_MESSAGE:
- if (priv->cur_item)
- g_value_set_object (value, priv->cur_item->msg);
- else
- g_value_set_object (value, NULL);
- break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -321,13 +314,6 @@ soup_connection_class_init (SoupConnectionClass *connection_class)
"Current state of connection",
SOUP_TYPE_CONNECTION_STATE, SOUP_CONNECTION_NEW,
G_PARAM_READWRITE));
- g_object_class_install_property (
- object_class, PROP_MESSAGE,
- g_param_spec_object (SOUP_CONNECTION_MESSAGE,
- "Message",
- "Message being processed",
- SOUP_TYPE_MESSAGE,
- G_PARAM_READABLE));
}
static void
@@ -395,7 +381,6 @@ set_current_item (SoupConnection *conn, SoupMessageQueueItem *item)
item->state = SOUP_MESSAGE_RUNNING;
priv->cur_item = item;
- g_object_notify (G_OBJECT (conn), "message");
priv->reusable = FALSE;
g_signal_connect (item->msg, "restarted",
@@ -897,7 +882,6 @@ soup_connection_set_state (SoupConnection *conn, SoupConnectionState state)
item = priv->cur_item;
priv->cur_item = NULL;
- g_object_notify (G_OBJECT (conn), "message");
g_signal_handlers_disconnect_by_func (item->msg, G_CALLBACK (current_item_restarted), conn);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]