summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2010-03-18 18:51:07 +0000
committerCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2010-03-23 18:11:30 +0000
commitd1e999225104d8037348310fafd7928a5b0faaf3 (patch)
tree1cce5450046a2065ae5eaae0a0825ca745f76d8d
parent6a51631fe7a1540b83b7a21d74b8e4037e85117e (diff)
Moving tpl_log_manager_register_log_store to log-manager-priv
-rw-r--r--telepathy-logger/log-manager-priv.h4
-rw-r--r--telepathy-logger/log-manager.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/telepathy-logger/log-manager-priv.h b/telepathy-logger/log-manager-priv.h
index 9c6ed6f55..e66f2544d 100644
--- a/telepathy-logger/log-manager-priv.h
+++ b/telepathy-logger/log-manager-priv.h
@@ -26,6 +26,7 @@
#include <telepathy-logger/log-manager.h>
#include <telepathy-logger/log-store-factory.h>
+#include <telepathy-logger/log-store.h>
gboolean tpl_log_manager_add_message (TplLogManager *manager,
TplLogEntry *message, GError **error);
@@ -36,4 +37,7 @@ gboolean tpl_log_manager_add_message_async_finish (GAsyncResult *result,
void tpl_log_manager_add_message_async (TplLogManager *manager,
TplLogEntry *message, GAsyncReadyCallback callback, gpointer user_data);
+gboolean tpl_log_manager_register_log_store (TplLogManager *self,
+ TplLogStore *logstore);
+
#endif /* __TPL_LOG_MANAGER_PRIV_H__ */
diff --git a/telepathy-logger/log-manager.h b/telepathy-logger/log-manager.h
index f5c037faf..6c88b510b 100644
--- a/telepathy-logger/log-manager.h
+++ b/telepathy-logger/log-manager.h
@@ -29,7 +29,6 @@
#include <telepathy-glib/account.h>
#include <telepathy-logger/log-entry.h>
-#include <telepathy-logger/log-store.h>
G_BEGIN_DECLS
#define TPL_TYPE_LOG_MANAGER (tpl_log_manager_get_type ())
@@ -149,8 +148,5 @@ void tpl_log_manager_search_hit_free (TplLogSearchHit *hit);
gint tpl_log_manager_search_hit_compare (TplLogSearchHit *a,
TplLogSearchHit *b);
-gboolean tpl_log_manager_register_log_store (TplLogManager *self,
- TplLogStore *logstore);
-
G_END_DECLS
#endif /* __TPL_LOG_MANAGER_H__ */