diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2003-10-01 00:16:11 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-10-01 00:16:11 +0000 |
commit | e8ea480893f8cc04b40fda8a59986dc076f1f1c8 (patch) | |
tree | c0966200a85c468df28532aa6d8f4c2cff3acda7 /gtk/gtktoolitem.c | |
parent | c34b0a094b8c0556f392363dacbfe11b75467f1f (diff) | |
download | gtk+-e8ea480893f8cc04b40fda8a59986dc076f1f1c8.tar.gz |
Fix signal doc comments to pacify gtk-doc.
* gtk/gtktoolitem.c (gtk_tool_item_class_init): Fix signal doc
comments to pacify gtk-doc.
Diffstat (limited to 'gtk/gtktoolitem.c')
-rw-r--r-- | gtk/gtktoolitem.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gtk/gtktoolitem.c b/gtk/gtktoolitem.c index 3f6652001f..8ec7a0ad2a 100644 --- a/gtk/gtktoolitem.c +++ b/gtk/gtktoolitem.c @@ -183,9 +183,9 @@ gtk_tool_item_class_init (GtkToolItemClass *klass) * in the overflow menu * </listitem> * <listitem> call gtk_tool_item_set_proxy_menu_item() with a new menu - * item and return TRUE, or + * item and return %TRUE, or * </listitem> - * <listitem> return FALSE to indicate that the signal was not + * <listitem> return %FALSE to indicate that the signal was not * handled by the item. This means that * the item will not appear in the overflow menu unless a later handler * installs a menu item. @@ -230,10 +230,15 @@ gtk_tool_item_class_init (GtkToolItemClass *klass) /** * GtkToolItem::set-tooltip: * @toolitem: the object the signal was emitted on + * @tooltips: the #GtkTooltips + * @tip_text: the tooltip text + * @tip_private: the tooltip private text * * This signal is emitted when the toolitem's tooltip changes. * Application developers can use gtk_tool_item_set_tooltip() to - * set the item's tooltip + * set the item's tooltip. + * + * Return value: %TRUE if the signal was handled, %FALSE if not **/ toolitem_signals[SET_TOOLTIP] = g_signal_new ("set_tooltip", |