[liboobs] Prefix OobsSelfConfig struct with _ to make gtk-doc happy



commit 071430d2ba55040ab53bd1609e3991e0de82d94f
Author: Milan Bouchet-Valat <nalimilan club fr>
Date:   Sat Sep 5 17:12:17 2009 +0200

    Prefix OobsSelfConfig struct with _ to make gtk-doc happy
    
    Using
    typedef OobsSelfConfig OobsSelfConfig;
    seems to raise issues about double declaration.

 oobs/oobs-selfconfig.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/oobs/oobs-selfconfig.h b/oobs/oobs-selfconfig.h
index d748a4a..283fa77 100644
--- a/oobs/oobs-selfconfig.h
+++ b/oobs/oobs-selfconfig.h
@@ -34,10 +34,10 @@ G_BEGIN_DECLS
 #define OOBS_IS_SELF_CONFIG_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE ((o),    OOBS_TYPE_SELF_CONFIG))
 #define OOBS_SELF_CONFIG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o),  OOBS_TYPE_SELF_CONFIG, OobsSelfConfigClass))
 
-typedef struct OobsSelfConfig      OobsSelfConfig;
-typedef struct OobsSelfConfigClass OobsSelfConfigClass;
+typedef struct _OobsSelfConfig      OobsSelfConfig;
+typedef struct _OobsSelfConfigClass OobsSelfConfigClass;
 
-struct OobsSelfConfig
+struct _OobsSelfConfig
 {
   OobsObject parent;
 
@@ -45,7 +45,7 @@ struct OobsSelfConfig
   gpointer _priv;
 };
 
-struct OobsSelfConfigClass
+struct _OobsSelfConfigClass
 {
   OobsObjectClass parent_class;
 



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