[gtk/text: 27/29] focus test: Use a GtkText instead
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/text: 27/29] focus test: Use a GtkText instead
- Date: Sun, 17 Feb 2019 20:59:00 +0000 (UTC)
commit 712370ae813d52bea9d24b154ed4af459696fa5f
Author: Matthias Clasen <mclasen redhat com>
Date: Sun Feb 17 15:51:31 2019 -0500
focus test: Use a GtkText instead
Thats where the focus is nowadays.
testsuite/gtk/focus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/testsuite/gtk/focus.c b/testsuite/gtk/focus.c
index 2884d137b3..0605c8eb53 100644
--- a/testsuite/gtk/focus.c
+++ b/testsuite/gtk/focus.c
@@ -12,10 +12,10 @@ test_window_focus (void)
box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_container_add (GTK_CONTAINER (window), box);
gtk_container_add (GTK_CONTAINER (box), gtk_label_new ("label1"));
- entry1 = gtk_entry_new ();
+ entry1 = gtk_text_new ();
gtk_container_add (GTK_CONTAINER (box), entry1);
gtk_container_add (GTK_CONTAINER (box), gtk_label_new ("label2"));
- entry2 = gtk_entry_new ();
+ entry2 = gtk_text_new ();
gtk_container_add (GTK_CONTAINER (box), entry2);
g_assert_null (gtk_window_get_focus (GTK_WINDOW (window)));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]