summaryrefslogtreecommitdiff
path: root/telepathy-logger/log-store.c
diff options
context:
space:
mode:
authorCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2010-02-19 17:43:39 +0000
committerCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2010-02-22 12:45:38 +0000
commitfc07d94530a3433d3fe3f930f751927f5b9e26a8 (patch)
tree1513b41775b61b8e60a76e2c578a071de23a70ff /telepathy-logger/log-store.c
parent7b20066d126e414fbfd00cd6bd06617cd123ca55 (diff)
downloadtelepathy-logger-fc07d94530a3433d3fe3f930f751927f5b9e26a8.tar.gz
rename LogStore iface method from last_messages to recent_messages
Diffstat (limited to 'telepathy-logger/log-store.c')
-rw-r--r--telepathy-logger/log-store.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/telepathy-logger/log-store.c b/telepathy-logger/log-store.c
index 255ded2..afe1d55 100644
--- a/telepathy-logger/log-store.c
+++ b/telepathy-logger/log-store.c
@@ -154,15 +154,15 @@ tpl_log_store_get_messages_for_date (TplLogStore *self,
GList *
-tpl_log_store_get_last_messages (TplLogStore *self,
+tpl_log_store_get_recent_messages (TplLogStore *self,
TpAccount *account,
const gchar *chat_id,
gboolean chatroom)
{
- if (!TPL_LOG_STORE_GET_INTERFACE (self)->get_last_messages)
+ if (!TPL_LOG_STORE_GET_INTERFACE (self)->get_recent_messages)
return NULL;
- return TPL_LOG_STORE_GET_INTERFACE (self)->get_last_messages (self, account,
+ return TPL_LOG_STORE_GET_INTERFACE (self)->get_recent_messages (self, account,
chat_id, chatroom);
}