[gtk/text: 24/26] focus test: Use a GtkText instead



commit c5745ae3ce078e9d4d0c3ae981a5a58e95c5cdfb
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]