From c6da8a38ca9472cf6b9e18be32d83b0aea7fdc80 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Fri, 28 Mar 2008 09:50:58 +0000 Subject: [PATCH] more documentation updates svn path=/trunk/; revision=25272 --- libgimpwidgets/gimphelpui.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/libgimpwidgets/gimphelpui.c b/libgimpwidgets/gimphelpui.c index f396d9d62e..d77a1ebe21 100644 --- a/libgimpwidgets/gimphelpui.c +++ b/libgimpwidgets/gimphelpui.c @@ -68,7 +68,12 @@ static gboolean gimp_context_help_idle_show_help (gpointer data); /** * gimp_help_enable_tooltips: * - * This function calls gtk_tooltips_enable(). + * Enable tooltips to be shown in the GIMP user interface. + * + * As a plug-in author, you don't need to care about this as this + * function is called for you from gimp_ui_init(). This ensures that + * the user setting from the GIMP preferences dialog is respected in + * all plug-in dialogs. **/ void gimp_help_enable_tooltips (void) @@ -83,7 +88,12 @@ gimp_help_enable_tooltips (void) /** * gimp_help_disable_tooltips: * - * This function calls gtk_tooltips_disable(). + * Disable tooltips to be shown in the GIMP user interface. + * + * As a plug-in author, you don't need to care about this as this + * function is called for you from gimp_ui_init(). This ensures that + * the user setting from the GIMP preferences dialog is respected in + * all plug-in dialogs. **/ void gimp_help_disable_tooltips (void)