summaryrefslogtreecommitdiff
path: root/gtk/gtktestutils.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2015-02-17 16:57:57 +0000
committerPhilip Withnall <philip.withnall@collabora.co.uk>2015-02-19 12:48:41 +0000
commitb397dd04c495a9df5b145471ab613476f160428b (patch)
tree7544cec6beb22e365d243a282f988443ca56fafb /gtk/gtktestutils.c
parent5091ae5e04ba8489d53ffc92eb610f274d950b18 (diff)
downloadgtk+-b397dd04c495a9df5b145471ab613476f160428b.tar.gz
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
Diffstat (limited to 'gtk/gtktestutils.c')
-rw-r--r--gtk/gtktestutils.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk/gtktestutils.c b/gtk/gtktestutils.c
index a024614220..78bb2586fb 100644
--- a/gtk/gtktestutils.c
+++ b/gtk/gtktestutils.c
@@ -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