~attente/gtk/menu-binding-emit-submenu-close-after-activate

« back to all changes in this revision

Viewing changes to debian/patches/revert-fix-up-builder.patch

  • Committer: Iain Lane
  • Date: 2014-06-11 15:05:42 UTC
  • mfrom: (342.1.9 312)
  • Revision ID: iain.lane@canonical.com-20140611150542-4ts2x89n5703rvfx
* debian/patches/a11y-tests-disable-color-chooser-and-message-dialog-.patch:
  Disable these tests which fail.
* debian/patches/revert-fix-up-builder.patch: Dialogs have one child again
  due to our patches to remove headerbars.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From 68c40e919a8668f61dafd41c0235db31dbdd68e7 Mon Sep 17 00:00:00 2001
 
2
From: Lars Uebernickel <lars.uebernickel@canonical.com>
 
3
Date: Wed, 11 Jun 2014 16:44:15 +0200
 
4
Subject: [PATCH] Revert 8520282f7533d76b6c38e041d2f46898140021ff
 
5
 
 
6
Dialogs continue to have one child on Ubuntu.
 
7
---
 
8
 testsuite/gtk/builder.c | 2 +-
 
9
 1 file changed, 1 insertion(+), 1 deletion(-)
 
10
 
 
11
diff --git a/testsuite/gtk/builder.c b/testsuite/gtk/builder.c
 
12
index 43a0441..f0f1a14 100644
 
13
--- a/testsuite/gtk/builder.c
 
14
+++ b/testsuite/gtk/builder.c
 
15
@@ -1028,7 +1028,7 @@ test_children (void)
 
16
   g_assert (dialog != NULL);
 
17
   g_assert (GTK_IS_DIALOG (dialog));
 
18
   children = gtk_container_get_children (GTK_CONTAINER (dialog));
 
19
-  g_assert (g_list_length (children) == 2);
 
20
+  g_assert (g_list_length (children) == 1);
 
21
   g_list_free (children);
 
22
   
 
23
   vbox = gtk_builder_get_object (builder, "dialog1-vbox");
 
24
-- 
 
25
2.0.0
 
26