summaryrefslogtreecommitdiff
path: root/telepathy-logger/log-manager.h
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2012-08-28 15:56:51 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2012-08-28 15:56:51 -0400
commit0361c0f908c20b6dacf8eb765cf1db546b74939a (patch)
tree46982846066593e9ee01ea2b152bb33e8dc6873e /telepathy-logger/log-manager.h
parent7f3d4a9a978265e5e1e43e258a9657851ee05cdf (diff)
downloadtelepathy-logger-0361c0f908c20b6dacf8eb765cf1db546b74939a.tar.gz
Documentation fix
Diffstat (limited to 'telepathy-logger/log-manager.h')
-rw-r--r--telepathy-logger/log-manager.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/telepathy-logger/log-manager.h b/telepathy-logger/log-manager.h
index 2bc8fa8..bd5e610 100644
--- a/telepathy-logger/log-manager.h
+++ b/telepathy-logger/log-manager.h
@@ -31,7 +31,6 @@
G_BEGIN_DECLS
#define TPL_TYPE_LOG_MANAGER (tpl_log_manager_get_type ())
-#define TPL_TYPE_LOG_SEARCH_HIT (_tpl_log_manager_search_hit_get_type ())
#define TPL_LOG_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TPL_TYPE_LOG_MANAGER, TplLogManager))
#define TPL_LOG_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TPL_TYPE_LOG_MANAGER, TplLogManagerClass))
#define TPL_IS_LOG_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TPL_TYPE_LOG_MANAGER))
@@ -68,6 +67,7 @@ typedef struct
/**
* TplEventTypeMask:
* @TPL_EVENT_MASK_TEXT: Mask to #TplTextEvent
+ * @TPL_EVENT_MASK_CALL: Mask to #TplCallEvent
* @TPL_EVENT_MASK_ANY: Special value to select all type of #TplEvent
*
* Mask used to filter type of #TplEvent returned.
@@ -79,7 +79,6 @@ typedef enum
TPL_EVENT_MASK_ANY = 0xffff
} TplEventTypeMask;
-
/**
* TplLogSearchHit:
* @account: the #TpAccount
@@ -88,18 +87,18 @@ typedef enum
*
* Represent the context where the search has results.
*/
-typedef struct
+typedef struct _TplLogSearchHit TplLogSearchHit;
+struct _TplLogSearchHit
{
TpAccount *account;
TplEntity *target;
GDate *date;
-} TplLogSearchHit;
+};
typedef gboolean (*TplLogEventFilter) (TplEvent *event,
gpointer user_data);
GType tpl_log_manager_get_type (void);
-GType _tpl_log_manager_search_hit_get_type (void);
TplLogManager *tpl_log_manager_dup_singleton (void);