summaryrefslogtreecommitdiff
path: root/telepathy-logger
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2012-09-25 18:56:44 -0400
committerWill Thompson <will.thompson@collabora.co.uk>2012-09-25 18:56:44 -0400
commite79bf63afac074b24d7d1ba1c0b0f7bb4b042c8d (patch)
tree4aa49341ca116cbc840ef20147e86bf6158aaf92 /telepathy-logger
parent02f14e5ed7074d30825ab1810c75520bfb9ed65f (diff)
downloadtelepathy-logger-e79bf63afac074b24d7d1ba1c0b0f7bb4b042c8d.tar.gz
TplLogStore: attach doc comments to the right properties
:readable and :writable had their doc comments swapped.
Diffstat (limited to 'telepathy-logger')
-rw-r--r--telepathy-logger/log-store.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/telepathy-logger/log-store.c b/telepathy-logger/log-store.c
index 68f4836..44ef326 100644
--- a/telepathy-logger/log-store.c
+++ b/telepathy-logger/log-store.c
@@ -74,13 +74,14 @@ _tpl_log_store_init (gpointer g_iface)
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
/**
- * TplLogStore:writable:
+ * TplLogStore:readable:
*
- * Defines whether the object is writable for a #TplLogManager.
+ * Defines whether the object is readable for a #TplLogManager.
*
- * If an TplLogStore implementation is writable, the #TplLogManager will call
- * its tpl_log_store_add_event() method every time a loggable even occurs,
- * i.e., every time _tpl_log_manager_add_event() is called.
+ * If an TplLogStore implementation is readable, the #TplLogManager will
+ * use the query methods against the instance (i.e. tpl_log_store_get_dates())
+ * every time a #TplLogManager instance is queried (i.e.,
+ * tpl_log_manager_get_date()).
*/
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("readable",
@@ -90,14 +91,13 @@ _tpl_log_store_init (gpointer g_iface)
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
/**
- * TplLogStore:readable:
+ * TplLogStore:writable:
*
- * Defines whether the object is readable for a #TplLogManager.
+ * Defines whether the object is writable for a #TplLogManager.
*
- * If an TplLogStore implementation is readable, the #TplLogManager will
- * use the query methods against the instance (i.e. tpl_log_store_get_dates())
- * every time a #TplLogManager instance is queried (i.e.,
- * tpl_log_manager_get_date()).
+ * If an TplLogStore implementation is writable, the #TplLogManager will call
+ * its tpl_log_store_add_event() method every time a loggable even occurs,
+ * i.e., every time _tpl_log_manager_add_event() is called.
*/
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("writable",