diff options
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-log-store-empathy.c | 7 | ||||
-rw-r--r-- | libempathy/empathy-log-store-empathy.h | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/libempathy/empathy-log-store-empathy.c b/libempathy/empathy-log-store-empathy.c index 2088fca03..06eb935ca 100644 --- a/libempathy/empathy-log-store-empathy.c +++ b/libempathy/empathy-log-store-empathy.c @@ -815,3 +815,10 @@ log_store_iface_init (gpointer g_iface, iface->ack_message = NULL; iface->get_filtered_messages = log_store_empathy_get_filtered_messages; } + +gchar * +empathy_log_store_empathy_get_dir (EmpathyLogStoreEmpathy *store, + TpAccount *account) +{ + return log_store_empathy_get_dir (EMPATHY_LOG_STORE (store), account, NULL, FALSE); +} diff --git a/libempathy/empathy-log-store-empathy.h b/libempathy/empathy-log-store-empathy.h index 3b26d2ccf..5fa6c2286 100644 --- a/libempathy/empathy-log-store-empathy.h +++ b/libempathy/empathy-log-store-empathy.h @@ -30,6 +30,8 @@ #include <glib.h> +#include <telepathy-glib/account.h> + G_BEGIN_DECLS #define EMPATHY_TYPE_LOG_STORE_EMPATHY \ @@ -64,6 +66,9 @@ struct _EmpathyLogStoreEmpathyClass GType empathy_log_store_empathy_get_type (void); +gchar * empathy_log_store_empathy_get_dir (EmpathyLogStoreEmpathy *store, + TpAccount *account); + G_END_DECLS #endif /* ENABLE_TPL */ |