mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-27 06:26:15 +01:00
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:
parent
de5afbc7cc
commit
adde752ec5
@ -47,8 +47,6 @@ IGNORE_HFILES= \
|
|||||||
ginotifyfilemonitor.h \
|
ginotifyfilemonitor.h \
|
||||||
gio-marshal.h \
|
gio-marshal.h \
|
||||||
gio.h \
|
gio.h \
|
||||||
gioalias.h \
|
|
||||||
gioalias.h \
|
|
||||||
gkeyfilesettingsbackend.h \
|
gkeyfilesettingsbackend.h \
|
||||||
gioenumtypes.h \
|
gioenumtypes.h \
|
||||||
giomodule-priv.h \
|
giomodule-priv.h \
|
||||||
|
@ -24,10 +24,6 @@ CFILE_GLOB=$(top_srcdir)/glib/*.c $(top_srcdir)/gmodule/*.c
|
|||||||
|
|
||||||
# Headers to ignore
|
# Headers to ignore
|
||||||
IGNORE_HFILES= \
|
IGNORE_HFILES= \
|
||||||
build \
|
|
||||||
gobject \
|
|
||||||
gio \
|
|
||||||
config.h \
|
|
||||||
gdatasetprivate.h \
|
gdatasetprivate.h \
|
||||||
glibintl.h \
|
glibintl.h \
|
||||||
gbsearcharray.h \
|
gbsearcharray.h \
|
||||||
@ -38,10 +34,8 @@ IGNORE_HFILES= \
|
|||||||
gunichartables.h \
|
gunichartables.h \
|
||||||
glib_trace.h \
|
glib_trace.h \
|
||||||
libcharset.h \
|
libcharset.h \
|
||||||
glibconfig-sysdefs.h \
|
|
||||||
gdebug.h \
|
gdebug.h \
|
||||||
gprintfint.h \
|
gprintfint.h \
|
||||||
galias.h \
|
|
||||||
gmirroringtable.h \
|
gmirroringtable.h \
|
||||||
gscripttable.h \
|
gscripttable.h \
|
||||||
glib-mirroring-tab \
|
glib-mirroring-tab \
|
||||||
|
@ -25,7 +25,7 @@ CFILE_GLOB=$(top_srcdir)/gobject/*.c
|
|||||||
|
|
||||||
# Headers to ignore
|
# Headers to ignore
|
||||||
IGNORE_HFILES = \
|
IGNORE_HFILES = \
|
||||||
gobjectalias.h \
|
gobject_trace.h \
|
||||||
gatomicarray.h
|
gatomicarray.h
|
||||||
|
|
||||||
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
||||||
|
@ -965,6 +965,8 @@ struct _GParamSpecVariant
|
|||||||
GParamSpec parent_instance;
|
GParamSpec parent_instance;
|
||||||
GVariantType *type;
|
GVariantType *type;
|
||||||
GVariant *default_value;
|
GVariant *default_value;
|
||||||
|
|
||||||
|
/*< private >*/
|
||||||
gpointer padding[4];
|
gpointer padding[4];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -51,10 +51,15 @@ enum /*< skip >*/
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/* vararg union holding actuall values collected
|
/* vararg union holding actual values collected
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* GTypeCValue:
|
* 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.
|
* A union holding one collected value.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user