Fix gtk-doc comments.

This commit is contained in:
Přemysl Eric Janouch 2010-10-27 18:18:37 +02:00
parent 121d923d29
commit 1c5127068e
6 changed files with 4 additions and 16 deletions

View File

@ -39,12 +39,11 @@ struct _LdDocument
{
/*< private >*/
GObject parent_instance;
/*< public >*/
};
struct _LdDocumentClass
{
/*< private >*/
GObjectClass parent_class;
};

View File

@ -31,12 +31,6 @@ typedef struct _LdLibraryPrivate LdLibraryPrivate;
typedef struct _LdLibraryClass LdLibraryClass;
/**
* LdLibrary:
* @categories: Lists all the categories (#LdSymbolCategory).
*
* Object structure.
*/
struct _LdLibrary
{
/*< private >*/

View File

@ -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;
};

View File

@ -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.
*/

View File

@ -58,10 +58,6 @@ typedef struct _LdSymbolPrivate LdSymbolPrivate;
typedef struct _LdSymbolClass LdSymbolClass;
/**
* LdSymbol:
* @name: The name of this symbol.
*/
struct _LdSymbol
{
/*< private >*/

View File

@ -45,6 +45,7 @@ struct _LdWindowMain
struct _LdWindowMainClass
{
/*< private >*/
GtkWindowClass parent_class;
};