Fix gtk-doc comments.
This commit is contained in:
parent
121d923d29
commit
1c5127068e
|
@ -39,12 +39,11 @@ struct _LdDocument
|
||||||
{
|
{
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GObject parent_instance;
|
GObject parent_instance;
|
||||||
|
|
||||||
/*< public >*/
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _LdDocumentClass
|
struct _LdDocumentClass
|
||||||
{
|
{
|
||||||
|
/*< private >*/
|
||||||
GObjectClass parent_class;
|
GObjectClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -31,12 +31,6 @@ typedef struct _LdLibraryPrivate LdLibraryPrivate;
|
||||||
typedef struct _LdLibraryClass LdLibraryClass;
|
typedef struct _LdLibraryClass LdLibraryClass;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* LdLibrary:
|
|
||||||
* @categories: Lists all the categories (#LdSymbolCategory).
|
|
||||||
*
|
|
||||||
* Object structure.
|
|
||||||
*/
|
|
||||||
struct _LdLibrary
|
struct _LdLibrary
|
||||||
{
|
{
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
|
|
|
@ -36,14 +36,12 @@ struct _LdLua
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GObject parent_instance;
|
GObject parent_instance;
|
||||||
LdLuaPrivate *priv;
|
LdLuaPrivate *priv;
|
||||||
|
|
||||||
/*< public >*/
|
|
||||||
gchar *name;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* TODO: A virtual superclass, so other engines can be used. */
|
/* TODO: A virtual superclass, so other engines can be used. */
|
||||||
struct _LdLuaClass
|
struct _LdLuaClass
|
||||||
{
|
{
|
||||||
|
/*< private >*/
|
||||||
GObjectClass parent_class;
|
GObjectClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -161,7 +161,7 @@ ld_symbol_category_finalize (GObject *gobject)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ld_symbol_category_new:
|
* ld_symbol_category_new:
|
||||||
* @parent: The parent library for this category.
|
* @name: The name of this category.
|
||||||
*
|
*
|
||||||
* Create an instance.
|
* Create an instance.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -58,10 +58,6 @@ typedef struct _LdSymbolPrivate LdSymbolPrivate;
|
||||||
typedef struct _LdSymbolClass LdSymbolClass;
|
typedef struct _LdSymbolClass LdSymbolClass;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* LdSymbol:
|
|
||||||
* @name: The name of this symbol.
|
|
||||||
*/
|
|
||||||
struct _LdSymbol
|
struct _LdSymbol
|
||||||
{
|
{
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
|
|
|
@ -45,6 +45,7 @@ struct _LdWindowMain
|
||||||
|
|
||||||
struct _LdWindowMainClass
|
struct _LdWindowMainClass
|
||||||
{
|
{
|
||||||
|
/*< private >*/
|
||||||
GtkWindowClass parent_class;
|
GtkWindowClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue