diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-03-16 16:05:56 +0000 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-03-16 16:05:56 +0000 |
commit | 74ca458b9a10c3fa91134c9b16a11d3e093ccfae (patch) | |
tree | a8e195b14e07914d97cf8e16275e78a3fe51fa4f | |
parent | 7a66837a80951006288ac1218438d04db9ef8410 (diff) | |
download | gtk+-74ca458b9a10c3fa91134c9b16a11d3e093ccfae.tar.gz |
Fix documentation error in gtk_widget_set_redraw_on_allocate.
* gtk/gtkwidget.c: Fix documentation error in
gtk_widget_set_redraw_on_allocate.
svn path=/trunk/; revision=17533
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gtk/gtkwidget.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-03-16 Xan Lopez <xan@localhost> + + * gtk/gtkwidget.c: Fix documentation error in + gtk_widget_set_redraw_on_allocate. + 2007-03-16 Matthias Clasen <mclasen@redhat.com> * gtk/gtkprintunixdialog.c (printer_added_cb): Scroll to diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c index f93b54e0d8..7de240de12 100644 --- a/gtk/gtkwidget.c +++ b/gtk/gtkwidget.c @@ -4845,7 +4845,7 @@ gtk_widget_set_double_buffered (GtkWidget *widget, * allocation changes. By default, this setting is %TRUE and * the entire widget is redrawn on every size change. If your widget * leaves the upper left unchanged when made bigger, turning this - * setting on will improve performance. + * setting off will improve performance. * Note that for %NO_WINDOW widgets setting this flag to %FALSE turns * off all allocation on resizing: the widget will not even redraw if |