summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-06-04 15:14:48 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-06-04 16:11:30 +0200
commite92be825370f2d7663efb2bd2dec4c0342694b37 (patch)
treedd42f5ae8e8738a9a11d6a92387e337defb9d183
parenta526994d50b22d6bd0a13e3a04c9006f5a9fc581 (diff)
downloadtelepathy-logger-e92be825370f2d7663efb2bd2dec4c0342694b37.tar.gz
log-store-xml: prefix internal API with underscore
-rw-r--r--telepathy-logger/log-store-xml-internal.h4
-rw-r--r--telepathy-logger/log-store-xml.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/telepathy-logger/log-store-xml-internal.h b/telepathy-logger/log-store-xml-internal.h
index 2e6a711..4ed460c 100644
--- a/telepathy-logger/log-store-xml-internal.h
+++ b/telepathy-logger/log-store-xml-internal.h
@@ -30,7 +30,7 @@
G_BEGIN_DECLS
#define TPL_TYPE_LOG_STORE_XML \
- (tpl_log_store_xml_get_type ())
+ (_tpl_log_store_xml_get_type ())
#define TPL_LOG_STORE_XML(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), TPL_TYPE_LOG_STORE_XML, \
TplLogStoreXml))
@@ -58,7 +58,7 @@ typedef struct
GObjectClass parent;
} TplLogStoreXmlClass;
-GType tpl_log_store_xml_get_type (void);
+GType _tpl_log_store_xml_get_type (void);
G_END_DECLS
#endif /* __TPL_LOG_STORE_XML_H__ */
diff --git a/telepathy-logger/log-store-xml.c b/telepathy-logger/log-store-xml.c
index bb748b6..2d21558 100644
--- a/telepathy-logger/log-store-xml.c
+++ b/telepathy-logger/log-store-xml.c
@@ -100,7 +100,7 @@ static void log_store_xml_set_writable (TplLogStoreXml *self, gboolean data);
static void log_store_xml_set_readable (TplLogStoreXml *self, gboolean data);
-G_DEFINE_TYPE_WITH_CODE (TplLogStoreXml, tpl_log_store_xml,
+G_DEFINE_TYPE_WITH_CODE (TplLogStoreXml, _tpl_log_store_xml,
G_TYPE_OBJECT,
G_IMPLEMENT_INTERFACE (TPL_TYPE_LOG_STORE, log_store_iface_init))
@@ -208,7 +208,7 @@ tpl_log_store_xml_set_property (GObject *object,
static void
-tpl_log_store_xml_class_init (TplLogStoreXmlClass *klass)
+_tpl_log_store_xml_class_init (TplLogStoreXmlClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GParamSpec *param_spec;
@@ -253,7 +253,7 @@ tpl_log_store_xml_class_init (TplLogStoreXmlClass *klass)
static void
-tpl_log_store_xml_init (TplLogStoreXml *self)
+_tpl_log_store_xml_init (TplLogStoreXml *self)
{
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
TPL_TYPE_LOG_STORE_XML, TplLogStoreXmlPriv);