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 >*/ /*< private >*/
GObject parent_instance; GObject parent_instance;
/*< public >*/
}; };
struct _LdDocumentClass struct _LdDocumentClass
{ {
/*< private >*/
GObjectClass parent_class; GObjectClass parent_class;
}; };

View File

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

View File

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

View File

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

View File

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

View File

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