summaryrefslogtreecommitdiff
path: root/bus/connection.h
diff options
context:
space:
mode:
authorChengwei Yang <chengwei.yang@intel.com>2013-11-28 09:17:38 +0800
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-01-06 15:59:18 +0000
commit854554c3a67b880ac92fa72c476b772cb5968b26 (patch)
tree7183d4945a1f7ef833dde7303606efc5df1bb6d0 /bus/connection.h
parentb2a517040cd6f0fcc676abe833675d5473820226 (diff)
downloaddbus-854554c3a67b880ac92fa72c476b772cb5968b26.tar.gz
BusTransaction: remove confusing getter of connections
There is a DBusList* member of BusTransaction named "connections", while its getter function bus_transaction_get_connections() returns context->connections which in fact is a BusConnections pointer, this is quite confusing. Because this is what bus_context_get_connections() returns. This patch call out to bus_context_get_connections() directly and remove the then unused bus_transaction_get_connections(). https://bugs.freedesktop.org/show_bug.cgi?id=71597 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'bus/connection.h')
-rw-r--r--bus/connection.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/bus/connection.h b/bus/connection.h
index 13c8b99f..9f4f9aea 100644
--- a/bus/connection.h
+++ b/bus/connection.h
@@ -122,7 +122,6 @@ typedef void (* BusTransactionCancelFunction) (void *data);
BusTransaction* bus_transaction_new (BusContext *context);
BusContext* bus_transaction_get_context (BusTransaction *transaction);
-BusConnections* bus_transaction_get_connections (BusTransaction *transaction);
dbus_bool_t bus_transaction_send (BusTransaction *transaction,
DBusConnection *connection,
DBusMessage *message);