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