More docs fixes

Remove the g*alias.h from the ignore lists

  Remove other old files from ignore lists

  Clean up gobject docs
This commit is contained in:
Ryan Lortie 2010-07-12 17:46:17 -04:00
parent de5afbc7cc
commit adde752ec5
5 changed files with 9 additions and 10 deletions

View File

@ -47,8 +47,6 @@ IGNORE_HFILES= \
ginotifyfilemonitor.h \
gio-marshal.h \
gio.h \
gioalias.h \
gioalias.h \
gkeyfilesettingsbackend.h \
gioenumtypes.h \
giomodule-priv.h \

View File

@ -24,10 +24,6 @@ CFILE_GLOB=$(top_srcdir)/glib/*.c $(top_srcdir)/gmodule/*.c
# Headers to ignore
IGNORE_HFILES= \
build \
gobject \
gio \
config.h \
gdatasetprivate.h \
glibintl.h \
gbsearcharray.h \
@ -38,10 +34,8 @@ IGNORE_HFILES= \
gunichartables.h \
glib_trace.h \
libcharset.h \
glibconfig-sysdefs.h \
gdebug.h \
gprintfint.h \
galias.h \
gmirroringtable.h \
gscripttable.h \
glib-mirroring-tab \

View File

@ -25,7 +25,7 @@ CFILE_GLOB=$(top_srcdir)/gobject/*.c
# Headers to ignore
IGNORE_HFILES = \
gobjectalias.h \
gobject_trace.h \
gatomicarray.h
# CFLAGS and LDFLAGS for compiling scan program. Only needed

View File

@ -965,6 +965,8 @@ struct _GParamSpecVariant
GParamSpec parent_instance;
GVariantType *type;
GVariant *default_value;
/*< private >*/
gpointer padding[4];
};

View File

@ -51,10 +51,15 @@ enum /*< skip >*/
};
/* vararg union holding actuall values collected
/* vararg union holding actual values collected
*/
/**
* GTypeCValue:
* @v_int: the field for holding integer values
* @v_long: the field for holding long integer values
* @v_int64: the field for holding 64 bit integer values
* @v_double: the field for holding floating point values
* @v_pointer: the field for holding pointers
*
* A union holding one collected value.
*/