[grilo] core: fix GrlLog gtkdoc documentation



commit 9b619eabd23601f68f1593a3f0d3927de4b1a540
Author: Víctor Manuel Jáquez Leal <vjaquez igalia com>
Date:   Tue Sep 7 11:05:15 2010 +0200

    core: fix GrlLog gtkdoc documentation
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez igalia com>

 src/grl-log.h |   11 ++---------
 1 files changed, 2 insertions(+), 9 deletions(-)
---
diff --git a/src/grl-log.h b/src/grl-log.h
index 76a1e38..160a5fa 100644
--- a/src/grl-log.h
+++ b/src/grl-log.h
@@ -52,14 +52,12 @@ typedef struct _GrlLogDomain GrlLogDomain;
 
 extern GrlLogDomain *GRL_LOG_DOMAIN_DEFAULT;
 
-/*
+/**
  * GRL_LOG_DOMAIN:
  * @domain: the log domain
  *
  * Defines a GrlLogDomain variable.
- * This macro expands to nothing if debugging is disabled.
  */
-
 #define GRL_LOG_DOMAIN(domain) GrlLogDomain *domain = NULL
 
 /**
@@ -67,7 +65,6 @@ extern GrlLogDomain *GRL_LOG_DOMAIN_DEFAULT;
  * @domain: the log domain
  *
  * Declares a GrlLogDomain variable as extern. Use in header files.
- * This macro expands to nothing if debugging is disabled.
  */
 #define GRL_LOG_DOMAIN_EXTERN(domain) extern GrlLogDomain *domain
 
@@ -76,7 +73,6 @@ extern GrlLogDomain *GRL_LOG_DOMAIN_DEFAULT;
  * @domain: the log domain
  *
  * Defines a static GrlLogDomain variable.
- * This macro expands to nothing if debugging is disabled.
  */
 #define GRL_LOG_DOMAIN_STATIC(domain) static GrlLogDomain *domain = NULL
 
@@ -86,7 +82,6 @@ extern GrlLogDomain *GRL_LOG_DOMAIN_DEFAULT;
  * @name: the name of the log domain.
  *
  * Creates a new #GrlLogDomain with the given name.
- * This macro expands to nothing if debugging is disabled.
  */
 #define GRL_LOG_DOMAIN_INIT(domain, name) G_STMT_START { \
   if (domain == NULL)                                    \
@@ -97,9 +92,7 @@ extern GrlLogDomain *GRL_LOG_DOMAIN_DEFAULT;
  * GRL_LOG_DOMAIN_FREE:
  * @domain: the log domain to free.
  *
- * Creates a new #GrlLogDomain with the given name and registers it to the
- * logging system.
- * This macro expands to nothing if debugging is disabled.
+ * Free a previously allocated #GrlLogDomain.
  */
 #define GRL_LOG_DOMAIN_FREE(domain) G_STMT_START {  \
   grl_log_domain_free (domain);                     \



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]