diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-09-29 13:54:12 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-09-29 13:54:12 +0800 |
commit | 1252239ef90a65845487fddbe620996533a4faa3 (patch) | |
tree | bcd98a148db32873a968ec91b0daae90e09fb518 /lib | |
parent | 5e8354c9b2d7f8826148f2c8e341af14cdf87f8c (diff) | |
download | gsoc2013-epiphany-1252239ef90a65845487fddbe620996533a4faa3.tar.gz gsoc2013-epiphany-1252239ef90a65845487fddbe620996533a4faa3.tar.zst gsoc2013-epiphany-1252239ef90a65845487fddbe620996533a4faa3.zip |
Update docs for ephy-icon-entry
svn path=/trunk/; revision=8559
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-icon-entry.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/lib/widgets/ephy-icon-entry.c b/lib/widgets/ephy-icon-entry.c index 6224076d5..78af35edc 100644 --- a/lib/widgets/ephy-icon-entry.c +++ b/lib/widgets/ephy-icon-entry.c @@ -313,13 +313,21 @@ ephy_icon_entry_get_type (void) /* public functions */ +/** + * ephy_icon_entry_new: + * + * Creates a new #EphyIconEntry. + * + * Return value: the new #GtkWidget + * + **/ GtkWidget * ephy_icon_entry_new (void) { return GTK_WIDGET (g_object_new (EPHY_TYPE_ICON_ENTRY, NULL)); } -/* +/** * ephy_icon_entry_pack_widget: * @entry: an #EphyIconEntry * @widget: a #GtkWidget to pack into the entry @@ -328,7 +336,7 @@ ephy_icon_entry_new (void) * Packs a widget into an #EphyIconEntry, the @start parameter determines if * it's packed at the start or end of it. * - */ + **/ void ephy_icon_entry_pack_widget (EphyIconEntry *entry, GtkWidget *widget, @@ -351,7 +359,7 @@ ephy_icon_entry_pack_widget (EphyIconEntry *entry, } } -/* +/** * ephy_icon_entry_get_entry: * @entry: an #EphyIconEntry * @@ -359,7 +367,7 @@ ephy_icon_entry_pack_widget (EphyIconEntry *entry, * * Return value: the embedded #GtkEntry * - */ + **/ GtkWidget * ephy_icon_entry_get_entry (EphyIconEntry *entry) { |