--- a/finch/libgnt/gntcombobox.h Fri Jan 31 18:02:20 2014 +0530 +++ b/finch/libgnt/gntcombobox.h Fri Jan 31 18:22:41 2014 +0530 @@ -69,55 +69,55 @@ G_BEGIN_DECLS /** - * @return Get the GType for GntComboBox + * Returns: Get the GType for GntComboBox */ GType gnt_combo_box_get_gtype(void); /** * Create a new GntComboBox * - * @return A new GntComboBox + * Returns: A new GntComboBox */ GntWidget * gnt_combo_box_new(void); /** * Add an entry * - * @param box The GntComboBox - * @param key The data - * @param text The text to display + * @box: The GntComboBox + * @key: The data + * @text: The text to display */ void gnt_combo_box_add_data(GntComboBox *box, gpointer key, const char *text); /** * Remove an entry * - * @param box The GntComboBox - * @param key The data to be removed + * @box: The GntComboBox + * @key: The data to be removed */ void gnt_combo_box_remove(GntComboBox *box, gpointer key); /** * Remove all entries * - * @param box The GntComboBox + * @box: The GntComboBox */ void gnt_combo_box_remove_all(GntComboBox *box); /** * Get the data that is currently selected * - * @param box The GntComboBox + * @box: The GntComboBox * - * @return The data of the currently selected entry + * Returns: The data of the currently selected entry */ gpointer gnt_combo_box_get_selected_data(GntComboBox *box); /** * Set the current selection to a specific entry * - * @param box The GntComboBox - * @param key The data to be set to + * @box: The GntComboBox + * @key: The data to be set to */ void gnt_combo_box_set_selected(GntComboBox *box, gpointer key);