diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-23 12:01:56 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-23 12:43:21 +0200 |
commit | 409112884116e87ebc94ae4403ad7c4e60e5877c (patch) | |
tree | 8edc8cd701ff265a849593488de5cab15f57be5d /telepathy-logger/log-store-xml.c | |
parent | a33ec0087f9391fcd776fcfc688953ba33023ca5 (diff) | |
download | telepathy-logger-409112884116e87ebc94ae4403ad7c4e60e5877c.tar.gz |
entry: replace the 'account-path' property by the TpAccount itself
Strictly speaking this is a API break but Empathy doesn't use this property
and I kept the tpl_entry_get_account_path() method.
Diffstat (limited to 'telepathy-logger/log-store-xml.c')
-rw-r--r-- | telepathy-logger/log-store-xml.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/telepathy-logger/log-store-xml.c b/telepathy-logger/log-store-xml.c index aec2a0a..cbe5cf2 100644 --- a/telepathy-logger/log-store-xml.c +++ b/telepathy-logger/log-store-xml.c @@ -879,8 +879,7 @@ log_store_xml_get_messages_for_file (TplLogStoreXml *self, g_free (instead_of_channel_path); } - message = _tpl_entry_text_new (log_id, - tp_proxy_get_object_path (account), TPL_ENTRY_DIRECTION_NONE); + message = _tpl_entry_text_new (log_id, account, TPL_ENTRY_DIRECTION_NONE); _tpl_entry_text_set_pending_msg_id (TPL_ENTRY_TEXT (message), pending_id); |