diff options
author | Padraig O'Briain <padraigo@src.gnome.org> | 2002-02-07 15:45:17 +0000 |
---|---|---|
committer | Padraig O'Briain <padraigo@src.gnome.org> | 2002-02-07 15:45:17 +0000 |
commit | 49ea86bccde551858cbf22ba19c5a1fe1eabf460 (patch) | |
tree | 581dc9f165391745de606f35b3fa81253b6086fd /gtk/gtktooltips.h | |
parent | 5bc235001ab5ea9071ae550c8ced0dcb88a725eb (diff) | |
download | gtk+-49ea86bccde551858cbf22ba19c5a1fe1eabf460.tar.gz |
Change show_help signal to return gboolean instead of void. This allows
* gtk/gtkwidget.[ch]:
Change show_help signal to return gboolean instead of void. This
allows the keypress which invokes the signal to be propagated to the
focus widgets ancestors if not handled by the focus widget.
* gtk/gtktoolips.[ch]
Change _gtk_tooltips_show_tip () to return a gboolean indicating
whether widget has tooltip to display.
Diffstat (limited to 'gtk/gtktooltips.h')
-rw-r--r-- | gtk/gtktooltips.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktooltips.h b/gtk/gtktooltips.h index 825e9635a2..d1e68b0ea5 100644 --- a/gtk/gtktooltips.h +++ b/gtk/gtktooltips.h @@ -94,7 +94,7 @@ GtkTooltipsData* gtk_tooltips_data_get (GtkWidget *widget); void gtk_tooltips_force_window (GtkTooltips *tooltips); -void _gtk_tooltips_show_tip (GtkWidget *widget); +gboolean _gtk_tooltips_show_tip (GtkWidget *widget); #ifdef __cplusplus } |