diff options
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkhscale.c | 8 | ||||
-rw-r--r-- | gtk/gtkmenushell.c | 4 | ||||
-rw-r--r-- | gtk/gtkvscale.c | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/gtk/gtkhscale.c b/gtk/gtkhscale.c index 8e0984c922..537217bcb7 100644 --- a/gtk/gtkhscale.c +++ b/gtk/gtkhscale.c @@ -110,10 +110,10 @@ gtk_hscale_new (GtkAdjustment *adjustment) * @max: maximum value * @step: step increment (tick size) used with keyboard shortcuts * - * Creates a new horizontal scale widget that lets the user - * input a number between @min and @max with the increment @step. - * @step must be nonzero; it's the distance the slider moves when - * using the arrow keys to adjust the scale value. + * Creates a new horizontal scale widget that lets the user input a + * number between @min and @max (including @min and @max) with the + * increment @step. @step must be nonzero; it's the distance the + * slider moves when using the arrow keys to adjust the scale value. * * Return value: a new #GtkHScale **/ diff --git a/gtk/gtkmenushell.c b/gtk/gtkmenushell.c index dbb6a5f898..a09c222613 100644 --- a/gtk/gtkmenushell.c +++ b/gtk/gtkmenushell.c @@ -24,6 +24,8 @@ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ +#define GTK_MENU_INTERNALS + #include "gdk/gdkkeysyms.h" #include "gtkbindings.h" #include "gtkmain.h" @@ -35,8 +37,6 @@ #define MENU_SHELL_TIMEOUT 500 -#define GTK_MENU_INTERNALS - enum { DEACTIVATE, SELECTION_DONE, diff --git a/gtk/gtkvscale.c b/gtk/gtkvscale.c index 64231ef63c..775f670236 100644 --- a/gtk/gtkvscale.c +++ b/gtk/gtkvscale.c @@ -112,10 +112,10 @@ gtk_vscale_new (GtkAdjustment *adjustment) * @max: maximum value * @step: step increment (tick size) used with keyboard shortcuts * - * Creates a new vertical scale widget that lets the user - * input a number between @min and @max with the increment @step. - * @step must be nonzero; it's the distance the slider moves when - * using the arrow keys to adjust the scale value. + * Creates a new vertical scale widget that lets the user input a + * number between @min and @max (including @min and @max) with the + * increment @step. @step must be nonzero; it's the distance the + * slider moves when using the arrow keys to adjust the scale value. * * Return value: a new #GtkVScale **/ |