gtk: Remove documentation references to the GTK_NO_WINDOW flag

It has been removed entirely, and replaced by
gtk_widget_get_has_window().

https://bugzilla.gnome.org/show_bug.cgi?id=744054
This commit is contained in:
Philip Withnall
2015-02-17 16:57:57 +00:00
parent 5091ae5e04
commit b397dd04c4
3 changed files with 20 additions and 18 deletions

View File

@ -172,7 +172,8 @@ gtk_test_widget_wait_for_draw (GtkWidget *widget)
*
* This function will generate keyboard press and release events in
* the middle of the first GdkWindow found that belongs to @widget.
* For %GTK_NO_WINDOW widgets like GtkButton, this will often be an
* For windowless widgets like #GtkButton (which returns %FALSE from
* gtk_widget_get_has_window()), this will often be an
* input-only event window. For other widgets, this is usually widget->window.
* Certain caveats should be considered when using this function, in
* particular because the mouse pointer is warped to the key press
@ -208,7 +209,8 @@ gtk_test_widget_send_key (GtkWidget *widget,
* This function will generate a @button click (button press and button
* release event) in the middle of the first GdkWindow found that belongs
* to @widget.
* For %GTK_NO_WINDOW widgets like GtkButton, this will often be an
* For windowless widgets like #GtkButton (which returns %FALSE from
* gtk_widget_get_has_window()), this will often be an
* input-only event window. For other widgets, this is usually widget->window.
* Certain caveats should be considered when using this function, in
* particular because the mouse pointer is warped to the button click