Hello community,

here is the log from the commit of package at-spi2-core for openSUSE:Factory 
checked in at 2020-09-25 16:24:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old)
 and      /work/SRC/openSUSE:Factory/.at-spi2-core.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "at-spi2-core"

Fri Sep 25 16:24:32 2020 rev:87 rq:836027 version:2.36.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes        
2020-04-23 18:25:36.851533792 +0200
+++ /work/SRC/openSUSE:Factory/.at-spi2-core.new.4249/at-spi2-core.changes      
2020-09-25 16:27:29.539675569 +0200
@@ -1,0 +2,15 @@
+Sat Sep 12 20:36:30 UTC 2020 - Matthias Eliasson <[email protected]>
+
+- Update to version 2.36.1:
+  + meson: De-duplicate deps of 'Requires' in pkgconfig file
+  + Make at-spi-dbus-bus.desktop Validat
+  + Fix ucs2keysym line for Euro sign
+  + Fix Qt annotations in DBus xml files
+  + constants: Fix typos in two _COUNT constants
+  + Fix a couple of memory leaks.
+  + Fix use after free when a device listener is destroyed.
+  + Fix use after free when an event listener is destroyed.
+- Run spec-cleaner
+  + Remove rpm groups
+
+-------------------------------------------------------------------

Old:
----
  at-spi2-core-2.36.0.tar.xz

New:
----
  at-spi2-core-2.36.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ at-spi2-core.spec ++++++
--- /var/tmp/diff_new_pack.YOtg6b/_old  2020-09-25 16:27:32.155677885 +0200
+++ /var/tmp/diff_new_pack.YOtg6b/_new  2020-09-25 16:27:32.159677888 +0200
@@ -17,15 +17,13 @@
 
 
 Name:           at-spi2-core
-Version:        2.36.0
+Version:        2.36.1
 Release:        0
 Summary:        Assistive Technology Service Provider Interface - D-Bus based 
implementation
 License:        LGPL-2.1-or-later
-Group:          System/GUI/GNOME
 URL:            https://www.gnome.org/
 Source0:        
https://download.gnome.org/sources/at-spi2-core/2.36/%{name}-%{version}.tar.xz
 Source99:       baselibs.conf
-
 BuildRequires:  gtk-doc
 BuildRequires:  meson >= 0.40.1
 BuildRequires:  pkgconfig
@@ -51,7 +49,6 @@
 
 %package -n libatspi0
 Summary:        Assistive Technology Service Provider Interface
-Group:          System/Libraries
 
 %description -n libatspi0
 AT-SPI is a general interface for applications to make use of the
@@ -59,7 +56,6 @@
 
 %package -n typelib-1_0-Atspi-2_0
 Summary:        Introspection bindings for the Assistive Technology Service 
Provider Interface
-Group:          System/Libraries
 
 %description -n typelib-1_0-Atspi-2_0
 AT-SPI is a general interface for applications to make use of the
@@ -70,7 +66,6 @@
 
 %package devel
 Summary:        Development files for the Assistive Technology Service 
Provider Interface
-Group:          Development/Libraries/GNOME
 Requires:       at-spi2-core = %{version}
 Requires:       libatspi0 = %{version}
 Requires:       typelib-1_0-Atspi-2_0 = %{version}

++++++ at-spi2-core-2.36.0.tar.xz -> at-spi2-core-2.36.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/NEWS new/at-spi2-core-2.36.1/NEWS
--- old/at-spi2-core-2.36.0/NEWS        2020-03-08 00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/NEWS        2020-09-05 01:56:27.960104700 +0200
@@ -1,3 +1,21 @@
+What's new in at-spi2-core 2.36.1:
+
+* meson: De-duplicate deps of 'Requires' in pkgconfig file
+    
+* Make at-spi-dbus-bus.desktop Validate
+    
+* Fix ucs2keysym line for Euro sign
+    
+* Fix Qt annotations in DBus xml files
+    
+* constants: Fix typos in two _COUNT constants
+
+* Fix a couple of memory leaks.
+
+* Fix use after free when a device listener is destroyed.
+
+* Fix use after free when an event listener is destroyed.
+
 What's new in at-spi2-core 2.35.92:
 
 * bus-launcher: make session management more robust.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/atspi/atspi-accessible.c 
new/at-spi2-core-2.36.1/atspi/atspi-accessible.c
--- old/at-spi2-core-2.36.0/atspi/atspi-accessible.c    2020-03-08 
00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/atspi/atspi-accessible.c    2020-09-05 
01:56:27.960104700 +0200
@@ -180,7 +180,7 @@
 
   accessible->priv = atspi_accessible_get_instance_private (accessible);
 
-  accessible->children = g_ptr_array_new_with_free_func 
(atspi_accessible_unref);
+  accessible->children = g_ptr_array_new_with_free_func ((GDestroyNotify) 
atspi_accessible_unref);
 }
 
 static void
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/atspi/atspi-constants.h 
new/at-spi2-core-2.36.1/atspi/atspi-constants.h
--- old/at-spi2-core-2.36.0/atspi/atspi-constants.h     2020-03-08 
00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/atspi/atspi-constants.h     2020-09-05 
01:56:27.960104700 +0200
@@ -121,7 +121,7 @@
  *
  * One higher than the highest valid value of #AtspiLocaleType.
  **/
-#define ATSPI_LOCALE_TYPE _COUNT(5+1)
+#define ATSPI_LOCALE_TYPE_COUNT (5+1)
 
 /**
  * AtspiCoordType:
@@ -241,7 +241,7 @@
  * One higher than the highest valid value of
  * #AtspiCollection_TreeTraversalType.
  */
-#define ATSPI_TREETRAVERSALTYPE _COUNT(3+1)
+#define ATSPI_TREETRAVERSALTYPE_COUNT (3+1)
 
 /**
  * AtspiComponentLayer:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/atspi/atspi-device-listener.c 
new/at-spi2-core-2.36.1/atspi/atspi-device-listener.c
--- old/at-spi2-core-2.36.0/atspi/atspi-device-listener.c       2020-03-08 
00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/atspi/atspi-device-listener.c       2020-09-05 
01:56:27.960104700 +0200
@@ -177,7 +177,9 @@
 {
   AtspiDeviceListener *listener = (AtspiDeviceListener *) object;
   GList *l;
-  
+
+  device_listeners = g_list_remove (device_listeners, listener);
+
   for (l = listener->callbacks; l; l = l->next)
     {
       device_event_handler_free (l->data);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/atspi/atspi-event-listener.c 
new/at-spi2-core-2.36.1/atspi/atspi-event-listener.c
--- old/at-spi2-core-2.36.0/atspi/atspi-event-listener.c        2020-03-08 
00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/atspi/atspi-event-listener.c        2020-09-05 
01:56:27.960104700 +0200
@@ -166,6 +166,9 @@
 }
 
 static GList *event_listeners = NULL;
+static GList *pending_removals = NULL;
+static int in_send = 0;
+
 
 static gchar *
 convert_name_from_dbus (const char *name, gboolean path_hack)
@@ -677,6 +680,7 @@
                 callback_destroyed);
   if (!convert_event_type_to_dbus (event_type, &e->category, &e->name, 
&e->detail, &matchrule_array))
   {
+    g_free (e->event_type);
     g_free (e);
     return FALSE;
   }
@@ -815,12 +819,12 @@
         is_superset (name, e->name) &&
         is_superset (detail, e->detail))
     {
-      gboolean need_replace;
       DBusMessage *message, *reply;
-      need_replace = (l == event_listeners);
-      l = g_list_remove (l, e);
-      if (need_replace)
-        event_listeners = l;
+      l = g_list_next (l);
+      if (in_send)
+      pending_removals = g_list_append (pending_removals, e);
+      else
+        event_listeners = g_list_remove (event_listeners, e);
       for (i = 0; i < matchrule_array->len; i++)
       {
        char *matchrule = g_ptr_array_index (matchrule_array, i);
@@ -837,9 +841,11 @@
       if (reply)
         dbus_message_unref (reply);
 
-      listener_entry_free (e);
+      if (!in_send)
+        listener_entry_free (e);
     }
-    else l = g_list_next (l);
+    else
+      l = g_list_next (l);
   }
   g_free (category);
   g_free (name);
@@ -911,6 +917,13 @@
                : strcmp (listener_detail, event_detail));
 }
 
+static void
+resolve_pending_removal (gpointer data)
+{
+  event_listeners = g_list_remove (event_listeners, data);
+  listener_entry_free (data);
+}
+
 void
 _atspi_send_event (AtspiEvent *e)
 {
@@ -931,6 +944,7 @@
     g_warning ("AT-SPI: Couldn't parse event: %s\n", e->type);
     return;
   }
+  in_send++;
   for (l = event_listeners; l; l = g_list_next (l))
   {
     EventListenerEntry *entry = l->data;
@@ -947,15 +961,27 @@
       }
       if (!l2)
       {
+        for (l2 = pending_removals; l2; l2 = l2->next)
+        {
+        if (l2->data == entry)
+          break;
+        }
+      }
+      if (!l2)
+      {
         entry->callback (atspi_event_copy (e), entry->user_data);
         called_listeners = g_list_prepend (called_listeners, entry);
       }
     }
   }
+  in_send--;
   if (detail) g_free (detail);
   g_free (name);
   g_free (category);
   g_list_free (called_listeners);
+
+  g_list_free_full (pending_removals, resolve_pending_removal);
+  pending_removals = NULL;
 }
 
 DBusHandlerResult
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/atspi/atspi-misc.c 
new/at-spi2-core-2.36.1/atspi/atspi-misc.c
--- old/at-spi2-core-2.36.0/atspi/atspi-misc.c  2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/atspi/atspi-misc.c  2020-09-05 01:56:27.964104700 
+0200
@@ -1403,7 +1403,7 @@
   accessible->interfaces = 0;
   if (strcmp (iter_sig, "as") != 0)
   {
-    g_warning ("_atspi_dbus_set_interfaces: Passed iterator with invalid 
signature %s", dbus_message_iter_get_signature (iter));
+    g_warning ("_atspi_dbus_set_interfaces: Passed iterator with invalid 
signature %s", iter_sig);
     dbus_free (iter_sig);
     return;
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/atspi/meson.build 
new/at-spi2-core-2.36.1/atspi/meson.build
--- old/at-spi2-core-2.36.0/atspi/meson.build   2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/atspi/meson.build   2020-09-05 01:56:27.964104700 
+0200
@@ -127,7 +127,7 @@
   description: 'Accessibility Technology software library',
   version: meson.project_version(),
   libraries: atspi,
-  requires: 'dbus-1 glib-2.0',
+  requires: ['dbus-1', 'glib-2.0'],
   subdirs: 'at-spi-2.0',
   filebase: 'atspi-2',
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/bus/at-spi-dbus-bus.desktop.in 
new/at-spi2-core-2.36.1/bus/at-spi-dbus-bus.desktop.in
--- old/at-spi2-core-2.36.0/bus/at-spi-dbus-bus.desktop.in      2020-03-08 
00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/bus/at-spi-dbus-bus.desktop.in      2020-09-05 
01:56:27.964104700 +0200
@@ -4,6 +4,6 @@
 Exec=@libexecdir@/at-spi-bus-launcher --launch-immediately
 OnlyShowIn=GNOME;Unity;
 NoDisplay=true
-AutostartCondition=GSETTINGS org.gnome.desktop.interface toolkit-accessibility
+AutostartCondition=GSettings org.gnome.desktop.interface toolkit-accessibility
 X-GNOME-AutoRestart=true
 X-GNOME-Autostart-Phase=Initialization
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/meson.build 
new/at-spi2-core-2.36.1/meson.build
--- old/at-spi2-core-2.36.0/meson.build 2020-03-08 00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/meson.build 2020-09-05 01:56:27.968104800 +0200
@@ -1,5 +1,5 @@
 project('at-spi2-core', 'c',
-        version: '2.36.0',
+        version: '2.36.1',
         license: 'LGPLv2.1+',
         default_options: [
           'buildtype=debugoptimized',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/po/uk.po 
new/at-spi2-core-2.36.1/po/uk.po
--- old/at-spi2-core-2.36.0/po/uk.po    2020-03-08 00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/po/uk.po    2020-09-05 01:56:27.972104800 +0200
@@ -5,112 +5,89 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 1.1\n"
-"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=at-";
-"spi&component=general\n"
-"POT-Creation-Date: 2011-02-04 22:21+0000\n"
-"PO-Revision-Date: 2011-02-07 17:41+0300\n"
-"Last-Translator: Korostil Daniel <[email protected]>\n"
+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/at-spi2-core/issues\n";
+"POT-Creation-Date: 2018-06-10 15:50+0000\n"
+"PO-Revision-Date: 2019-10-18 18:08+0300\n"
+"Last-Translator: vikaig <[email protected]>\n"
 "Language-Team: [email protected]\n"
 "Language: uk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Virtaal 0.6.1\n"
-
-#: ../atspi/atspi-misc.c:290
-#, c-format
-msgid "AT-SPI: Unknown signature %s for RemoveAccessible"
-msgstr "AT-SPI: невідомий підпис %s для RemoveAccessible"
-
-#: ../atspi/atspi-misc.c:327
-#, c-format
-msgid "AT-SPI: Error calling getRoot for %s: %s"
-msgstr "AT-SPI: помилка виклику getRoot для %s: %s"
-
-#: ../atspi/atspi-misc.c:485
-#, c-format
-msgid "AT-SPI: Error in GetItems, sender=%s, error=%s"
-msgstr "AT-SPI: помилка в GetItems, sender=%s, error=%s"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Poedit 2.2.1\n"
 
-#: ../atspi/atspi-misc.c:587
-#, c-format
-msgid ""
-"AT-SPI: Called _atspi_dbus_return_accessible_from_message with strange "
-"signature %s"
-msgstr ""
-"AT-SPI: викликано _atspi_dbus_return_accessible_from_message з дивним "
-"підписом %s"
-
-#: ../atspi/atspi-misc.c:616
-#, c-format
-msgid ""
-"AT-SPI: Called _atspi_dbus_return_hyperlink_from_message with strange "
-"signature %s"
-msgstr ""
-"AT-SPI: викликано _atspi_dbus_return_hyperlink_from_message з дивним "
-"підписом %s"
-
-#: ../atspi/atspi-misc.c:641
-#, c-format
-msgid "AT-SPI: AddAccessible with unknown signature %s\n"
-msgstr "AT-SPI: AddAccessible з невідомим підписом %s\n"
-
-#: ../atspi/atspi-misc.c:826
-msgid "AT-SPI: Could not get the display\n"
-msgstr "AT-SPI: неможливо перейти до показу\n"
-
-#: ../atspi/atspi-misc.c:844
-msgid "AT-SPI: Accessibility bus not found - Using session bus.\n"
-msgstr "AT-SPI: не знайдено шини доступності — використовуйте шину сеансу.\n"
-
-#: ../atspi/atspi-misc.c:848 ../atspi/atspi-misc.c:857
-#, c-format
-msgid "AT-SPI: Couldn't connect to bus: %s\n"
-msgstr "AT-SPI: неможливо з'єднатись із шиною: %s\n"
-
-#: ../atspi/atspi-misc.c:864
-#, c-format
-msgid "AT-SPI: Couldn't register with bus: %s\n"
-msgstr "AT-SPI: неможливо зареєструватись із шиною: %s\n"
-
-#: ../atspi/atspi-misc.c:1002 ../atspi/atspi-misc.c:1053
-#: ../atspi/atspi-misc.c:1094
+#: atspi/atspi-component.c:326 atspi/atspi-misc.c:1073 atspi/atspi-value.c:111
 msgid "The application no longer exists"
 msgstr "Програми більше не існує"
 
-#: ../atspi/atspi-misc.c:1130
-#, c-format
-msgid "AT-SPI: expected a variant when fetching %s from interface %s; got %s\n"
-msgstr "AT-SPI: очікуваний варіант, коли звантажуємо %s з інтерфейсу %s; 
отримаємо %"
-"s\n"
-
-#: ../atspi/atspi-misc.c:1136
-#, c-format
-msgid "atspi_dbus_get_property: Wrong type: expected %s, got %c\n"
-msgstr "atspi_dbus_get_property: неправильний тип: очікували %s, отримали %c\n"
-
-#: ../atspi/atspi-misc.c:1279
-#, c-format
-msgid "AT-SPI: Unknown interface %s"
-msgstr "AT-SPI: невідомий інтерфейс %s"
-
-#: ../atspi/atspi-misc.c:1299
-#, c-format
-msgid "AT-SPI: expected 2 values in states array; got %d\n"
-msgstr "AT-SPI: очікувалось 2 значення в масиві станів; отримали %d\n"
-
-#: ../atspi/atspi-accessible.c:997
-msgid "Streamable content not implemented"
-msgstr "Потоковий вміст не реалізовано"
-
-#: ../atspi/atspi-event-listener.c:510
-msgid ""
-"called atspi_event_listener_register_from_callback with a NULL event_type"
-msgstr "викликано atspi_event_listener_register_from_callback з NULL 
event_type"
+#: atspi/atspi-misc.c:1850
+msgid "Attempted synchronous call where prohibited"
+msgstr "Спроба синхронного виклику там, де це заборонено"
+
+#~ msgid "AT-SPI: Unknown signature %s for RemoveAccessible"
+#~ msgstr "AT-SPI: невідомий підпис %s для RemoveAccessible"
+
+#~ msgid "AT-SPI: Error calling getRoot for %s: %s"
+#~ msgstr "AT-SPI: помилка виклику getRoot для %s: %s"
+
+#~ msgid "AT-SPI: Error in GetItems, sender=%s, error=%s"
+#~ msgstr "AT-SPI: помилка в GetItems, sender=%s, error=%s"
+
+#~ msgid ""
+#~ "AT-SPI: Called _atspi_dbus_return_accessible_from_message with strange "
+#~ "signature %s"
+#~ msgstr ""
+#~ "AT-SPI: викликано _atspi_dbus_return_accessible_from_message з дивним "
+#~ "підписом %s"
+
+#~ msgid ""
+#~ "AT-SPI: Called _atspi_dbus_return_hyperlink_from_message with strange "
+#~ "signature %s"
+#~ msgstr ""
+#~ "AT-SPI: викликано _atspi_dbus_return_hyperlink_from_message з дивним "
+#~ "підписом %s"
+
+#~ msgid "AT-SPI: AddAccessible with unknown signature %s\n"
+#~ msgstr "AT-SPI: AddAccessible з невідомим підписом %s\n"
+
+#~ msgid "AT-SPI: Could not get the display\n"
+#~ msgstr "AT-SPI: неможливо перейти до показу\n"
+
+#~ msgid "AT-SPI: Accessibility bus not found - Using session bus.\n"
+#~ msgstr ""
+#~ "AT-SPI: не знайдено шини доступності — використовуйте шину сеансу.\n"
+
+#~ msgid "AT-SPI: Couldn't connect to bus: %s\n"
+#~ msgstr "AT-SPI: неможливо з'єднатись із шиною: %s\n"
+
+#~ msgid "AT-SPI: Couldn't register with bus: %s\n"
+#~ msgstr "AT-SPI: неможливо зареєструватись із шиною: %s\n"
+
+#~ msgid ""
+#~ "AT-SPI: expected a variant when fetching %s from interface %s; got %s\n"
+#~ msgstr ""
+#~ "AT-SPI: очікуваний варіант, коли звантажуємо %s з інтерфейсу %s; "
+#~ "отримаємо %s\n"
+
+#~ msgid "atspi_dbus_get_property: Wrong type: expected %s, got %c\n"
+#~ msgstr ""
+#~ "atspi_dbus_get_property: неправильний тип: очікували %s, отримали %c\n"
+
+#~ msgid "AT-SPI: Unknown interface %s"
+#~ msgstr "AT-SPI: невідомий інтерфейс %s"
+
+#~ msgid "AT-SPI: expected 2 values in states array; got %d\n"
+#~ msgstr "AT-SPI: очікувалось 2 значення в масиві станів; отримали %d\n"
+
+#~ msgid "Streamable content not implemented"
+#~ msgstr "Потоковий вміст не реалізовано"
+
+#~ msgid ""
+#~ "called atspi_event_listener_register_from_callback with a NULL event_type"
+#~ msgstr ""
+#~ "викликано atspi_event_listener_register_from_callback з NULL event_type"
 
-#: ../atspi/atspi-event-listener.c:777
-#, c-format
-msgid "Got invalid signature %s for signal %s from interface %s\n"
-msgstr "Отримано неправильний підпис %s для сигналу %s з інтерфейсу %s\n"
+#~ msgid "Got invalid signature %s for signal %s from interface %s\n"
+#~ msgstr "Отримано неправильний підпис %s для сигналу %s з інтерфейсу %s\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/registryd/ucs2keysym.c 
new/at-spi2-core-2.36.1/registryd/ucs2keysym.c
--- old/at-spi2-core-2.36.0/registryd/ucs2keysym.c      2020-03-08 
00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/registryd/ucs2keysym.c      2020-09-05 
01:56:27.976104700 +0200
@@ -549,7 +549,7 @@
   { 0x0afc, 0x2038 }, /*                       caret ‸ CARET */
   { 0x047e, 0x203e }, /*                    overline ‾ OVERLINE */
   { 0x0eff, 0x20a9 }, /*                  Korean_Won ₩ WON SIGN */
-  { 0x13a4, 0x20ac }, /*                        Euro € EURO SIGN */
+  { 0x20ac, 0x20ac }, /*                        Euro € EURO SIGN */
 
   { 0x0ab8, 0x2105 }, /*                      careof ℅ CARE OF */
   { 0x06b0, 0x2116 }, /*                  numerosign № NUMERO SIGN */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/test/memory.c 
new/at-spi2-core-2.36.1/test/memory.c
--- old/at-spi2-core-2.36.0/test/memory.c       2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/test/memory.c       2020-09-05 01:56:27.976104700 
+0200
@@ -1,4 +1,5 @@
 #include "atspi/atspi.h"
+#include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <string.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Accessible.xml 
new/at-spi2-core-2.36.1/xml/Accessible.xml
--- old/at-spi2-core-2.36.0/xml/Accessible.xml  2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Accessible.xml  2020-09-05 01:56:27.976104700 
+0200
@@ -7,7 +7,7 @@
   <property name="Description" type="s" access="read"/>
 
   <property name="Parent" type="(so)" access="read">
-    <annotation name="com.trolltech.QtDBus.QtTypeName" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName" 
value="QSpiObjectReference"/>
   </property>
 
   <property name="ChildCount" type="i" access="read"/>
@@ -19,12 +19,12 @@
   <method name="GetChildAtIndex">
     <arg direction="in" name="index" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="GetChildren">
     <arg direction="out" type="a(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReferenceArray"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReferenceArray"/>
   </method>
 
   <method name="GetIndexInParent">
@@ -33,7 +33,7 @@
 
   <method name="GetRelationSet">
     <arg direction="out" type="a(ua(so))"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiRelationArray"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiRelationArray"/>
   </method>
 
   <method name="GetRole">
@@ -50,17 +50,17 @@
 
   <method name="GetState">
     <arg direction="out" type="au"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiIntList"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiIntList"/>
   </method>
 
   <method name="GetAttributes">
     <arg direction="out" type="a{ss}"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
   </method>
 
   <method name="GetApplication">
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Action.xml 
new/at-spi2-core-2.36.1/xml/Action.xml
--- old/at-spi2-core-2.36.0/xml/Action.xml      2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Action.xml      2020-09-05 01:56:27.976104700 
+0200
@@ -26,7 +26,7 @@
 
   <method name="GetActions">
     <arg direction="out" type="a(sss)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiActionArray"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiActionArray"/>
   </method>
 
   <method name="DoAction">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Cache.xml 
new/at-spi2-core-2.36.1/xml/Cache.xml
--- old/at-spi2-core-2.36.0/xml/Cache.xml       2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Cache.xml       2020-09-05 01:56:27.976104700 
+0200
@@ -3,18 +3,18 @@
 <interface name="org.a11y.atspi.Cache">
 
   <method name="GetItems">
-    <arg name="nodes" type="a((so)(so)iiassusau)" direction="out"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiAccessibleCacheArray"/>
+    <arg direction="out" name="nodes" type="a((so)(so)iiassusau)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiAccessibleCacheArray"/>
   </method>
 
   <signal name="AddAccessible">
-    <arg name="nodeAdded" type="((so)(so)iiassusau)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiAccessibleCacheItem"/>
+    <arg direction="in" name="nodeAdded" type="((so)(so)iiassusau)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiAccessibleCacheItem"/>
   </signal>
 
   <signal name="RemoveAccessible">
-    <arg name="nodeRemoved" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
+    <arg direction="in" name="nodeRemoved" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
   </signal>
 
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Collection.xml 
new/at-spi2-core-2.36.1/xml/Collection.xml
--- old/at-spi2-core-2.36.0/xml/Collection.xml  2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Collection.xml  2020-09-05 01:56:27.976104700 
+0200
@@ -4,44 +4,44 @@
 
   <method name="GetMatches">
     <arg direction="in" name="rule" type="(auuasuauusub)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In1" 
value="QSpiMatchRule"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="count" type="i"/>
     <arg direction="in" name="traverse" type="b"/>
     <arg direction="out" type="a(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiReferenceSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiReferenceSet"/>
   </method>
 
   <method name="GetMatchesTo">
     <arg direction="in" name="current_object" type="o"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
     <arg direction="in" name="rule" type="(auuasuauusub)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In1" 
value="QSpiMatchRule"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" 
value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="tree" type="u"/>
     <arg direction="in" name="limit_scope" type="b"/>
     <arg direction="in" name="count" type="i"/>
     <arg direction="in" name="traverse" type="b"/>
     <arg direction="out" type="a(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiReferenceSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiReferenceSet"/>
   </method>
 
   <method name="GetMatchesFrom">
     <arg direction="in" name="current_object" type="o"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
     <arg direction="in" name="rule" type="(auuasuauusub)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In1" 
value="QSpiMatchRule"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" 
value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="tree" type="u"/>
     <arg direction="in" name="count" type="i"/>
     <arg direction="in" name="traverse" type="b"/>
     <arg direction="out" type="a(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiReferenceSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiReferenceSet"/>
   </method>
 
   <method name="GetActiveDescendant">
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiReferenceSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiReferenceSet"/>
   </method>
 
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Component.xml 
new/at-spi2-core-2.36.1/xml/Component.xml
--- old/at-spi2-core-2.36.0/xml/Component.xml   2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Component.xml   2020-09-05 01:56:27.976104700 
+0200
@@ -14,13 +14,13 @@
     <arg direction="in" name="y" type="i"/>
     <arg direction="in" name="coord_type" type="u"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="GetExtents">
     <arg direction="in" name="coord_type" type="u"/>
     <arg direction="out" type="(iiii)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
   </method>
 
   <method name="GetPosition">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/DeviceEventController.xml 
new/at-spi2-core-2.36.1/xml/DeviceEventController.xml
--- old/at-spi2-core-2.36.0/xml/DeviceEventController.xml       2020-03-08 
00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/xml/DeviceEventController.xml       2020-09-05 
01:56:27.976104700 +0200
@@ -4,24 +4,20 @@
 
   <method name="RegisterKeystrokeListener">
     <arg direction="in" name="listener" type="o"/>
-    <arg direction="in" name="keys" type="a(iisi)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In1" 
value="QSpiKeyTypeArray"/>
-    </arg>
+    <arg direction="in" name="keys" type="a(iisi)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" 
value="QSpiKeyTypeArray"/>
     <arg direction="in" name="mask" type="u"/>
-    <arg direction="in" name="type" type="au">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In3" 
value="QSpiEventTypeArray"/>
-    </arg>
-    <arg direction="in" name="mode" type="(bbb)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In4" 
value="QSpiEventMode"/>
-    </arg>
+    <arg direction="in" name="type" type="au"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In3" 
value="QSpiEventTypeArray"/>
+    <arg direction="in" name="mode" type="(bbb)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In4" 
value="QSpiEventMode"/>
     <arg direction="out" type="b"/>
   </method>
 
   <method name="DeregisterKeystrokeListener">
     <arg direction="in" name="listener" type="o"/>
-    <arg direction="in" name="keys" type="a(iisi)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In1" 
value="QSpiKeyTypeArray"/>
-    </arg>
+    <arg direction="in" name="keys" type="a(iisi)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" 
value="QSpiKeyTypeArray"/>
     <arg direction="in" name="mask" type="u"/>
     <arg direction="in" name="type" type="u"/>
   </method>
@@ -52,12 +48,12 @@
   <method name="NotifyListenersSync">
     <arg direction="in" name="event" type="(uiuuisb)"/>
     <arg direction="out" type="b"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiDeviceEvent"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiDeviceEvent"/>
   </method>
 
   <method name="NotifyListenersAsync">
     <arg direction="in" name="event" type="(uiuuisb)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiDeviceEvent"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiDeviceEvent"/>
   </method>
 
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/DeviceEventListener.xml 
new/at-spi2-core-2.36.1/xml/DeviceEventListener.xml
--- old/at-spi2-core-2.36.0/xml/DeviceEventListener.xml 2020-03-08 
00:19:58.000000000 +0100
+++ new/at-spi2-core-2.36.1/xml/DeviceEventListener.xml 2020-09-05 
01:56:27.976104700 +0200
@@ -4,7 +4,7 @@
 
   <method name="NotifyEvent">
     <arg direction="in" name="event" type="(uiuuisb)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiDeviceEvent"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiDeviceEvent"/>
     <arg direction="out" type="b"/>
   </method>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Document.xml 
new/at-spi2-core-2.36.1/xml/Document.xml
--- old/at-spi2-core-2.36.0/xml/Document.xml    2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Document.xml    2020-09-05 01:56:27.976104700 
+0200
@@ -17,7 +17,7 @@
 
   <method name="GetAttributes">
     <arg direction="out" type="{ss}"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiAttrubutes"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
   </method>
 
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Event.xml 
new/at-spi2-core-2.36.1/xml/Event.xml
--- old/at-spi2-core-2.36.0/xml/Event.xml       2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Event.xml       2020-09-05 01:56:27.976104700 
+0200
@@ -3,190 +3,190 @@
 
 <interface name="org.a11y.atspi.Event.Object">
        <signal name="PropertyChange"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="BoundsChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="LinkSelected"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="StateChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ChildrenChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="VisibleDataChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="SelectionChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ModelChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ActiveDescendantChanged"><arg direction="in" 
type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="RowInserted"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="RowReordered"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="RowDeleted"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ColumnInserted"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ColumnReordered"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ColumnDeleted"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="TextBoundsChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="TextSelectionChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="TextChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="TextAttributesChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="TextCaretMoved"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="AttributesChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Window">
        <signal name="PropertyChange"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Minimize"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Maximize"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Restore"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Close"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Create"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Reparent"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="DesktopCreate"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="DesktopDestroy"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Destroy"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Activate"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Deactivate"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Raise"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Lower"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Move"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Resize"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Shade"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="uUshade"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Restyle"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Mouse">
        <signal name="Abs"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Rel"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Button"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Keyboard">
        <signal name="Modifiers"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Terminal">
        <signal name="LineChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ColumncountChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="LinecountChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ApplicationChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="CharwidthChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Document">
        <signal name="LoadComplete"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="Reload"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="LoadStopped"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="ContentChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="AttributesChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
        <signal name="PageChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Focus">
        <signal name="Focus"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiEvent"/>
         </signal>
 </interface>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Hyperlink.xml 
new/at-spi2-core-2.36.1/xml/Hyperlink.xml
--- old/at-spi2-core-2.36.0/xml/Hyperlink.xml   2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Hyperlink.xml   2020-09-05 01:56:27.976104700 
+0200
@@ -11,7 +11,7 @@
   <method name="GetObject">
     <arg direction="in" name="i" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="GetURI">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Hypertext.xml 
new/at-spi2-core-2.36.1/xml/Hypertext.xml
--- old/at-spi2-core-2.36.0/xml/Hypertext.xml   2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Hypertext.xml   2020-09-05 01:56:27.976104700 
+0200
@@ -9,7 +9,7 @@
   <method name="GetLink">
     <arg direction="in" name="linkIndex" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="GetLinkIndex">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Image.xml 
new/at-spi2-core-2.36.1/xml/Image.xml
--- old/at-spi2-core-2.36.0/xml/Image.xml       2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Image.xml       2020-09-05 01:56:27.976104700 
+0200
@@ -9,7 +9,7 @@
   <method name="GetImageExtents">
     <arg direction="in" name="coordType" type="u"/>
     <arg direction="out" type="(iiii)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
   </method>
 
   <method name="GetImagePosition">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Registry.xml 
new/at-spi2-core-2.36.1/xml/Registry.xml
--- old/at-spi2-core-2.36.0/xml/Registry.xml    2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Registry.xml    2020-09-05 01:56:27.976104700 
+0200
@@ -13,8 +13,8 @@
   </method>
 
   <method name="GetRegisteredEvents">
-    <arg direction="out" name="events" type="a(ss)">
-    </arg>
+    <arg direction="out" name="events" type="a(ss)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiEventListenerArray"/>
   </method>
 
   <signal name="EventListenerRegistered">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Selection.xml 
new/at-spi2-core-2.36.1/xml/Selection.xml
--- old/at-spi2-core-2.36.0/xml/Selection.xml   2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Selection.xml   2020-09-05 01:56:27.976104700 
+0200
@@ -7,7 +7,7 @@
   <method name="GetSelectedChild">
     <arg direction="in" name="selectedChildIndex" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="SelectChild">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Socket.xml 
new/at-spi2-core-2.36.1/xml/Socket.xml
--- old/at-spi2-core-2.36.0/xml/Socket.xml      2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Socket.xml      2020-09-05 01:56:27.976104700 
+0200
@@ -3,24 +3,20 @@
 <interface name="org.a11y.atspi.Socket">
 
   <method name="Embed">
-    <arg direction="in" name="plug" type="(so)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
-    </arg>
-    <arg direction="out" name="socket" type="(so)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
-    </arg>
+    <arg direction="in" name="plug" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
+    <arg direction="out" name="socket" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="Unembed">
-    <arg direction="in" name="plug" type="(so)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
-    </arg>
+    <arg direction="in" name="plug" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
   </method>
 
   <signal name="Available">
-    <arg direction="in" name="socket" type="(so)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
-    </arg>
+    <arg direction="in" name="socket" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" 
value="QSpiObjectReference"/>
   </method>
 
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Table.xml 
new/at-spi2-core-2.36.1/xml/Table.xml
--- old/at-spi2-core-2.36.0/xml/Table.xml       2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Table.xml       2020-09-05 01:56:27.976104700 
+0200
@@ -7,11 +7,11 @@
   <property name="NColumns" type="i" access="read"/>
 
   <property name="Caption" type="(so)" access="read">
-    <annotation name="com.trolltech.QtDBus.QtTypeName" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName" 
value="QSpiObjectReference"/>
   </property>
 
   <property name="Summary" type="(so)" access="read">
-    <annotation name="com.trolltech.QtDBus.QtTypeName" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName" 
value="QSpiObjectReference"/>
   </property>
 
   <property name="NSelectedRows" type="i" access="read"/>
@@ -22,7 +22,7 @@
     <arg direction="in" name="row" type="i"/>
     <arg direction="in" name="column" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="GetIndexAt">
@@ -66,23 +66,23 @@
   <method name="GetRowHeader">
     <arg direction="in" name="row" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="GetColumnHeader">
     <arg direction="in" name="column" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiObjectReference"/>
   </method>
 
   <method name="GetSelectedRows">
     <arg direction="out" type="ai"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiIntList"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiIntList"/>
   </method>
 
   <method name="GetSelectedColumns">
     <arg direction="out" type="ai"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiIntList"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiIntList"/>
   </method>
 
   <method name="IsRowSelected">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/TableCell.xml 
new/at-spi2-core-2.36.1/xml/TableCell.xml
--- old/at-spi2-core-2.36.0/xml/TableCell.xml   2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/TableCell.xml   2020-09-05 01:56:27.976104700 
+0200
@@ -4,11 +4,15 @@
 
   <property access="read" name="ColumnSpan" type="i" />
 
-  <property access="read" name="Position" type="(ii)" />
+  <property access="read" name="Position" type="(ii)">
+    <annotation name="org.qtproject.QtDBus.QtTypeName" value="QPoint"/>
+  </property>
 
   <property access="read" name="RowSpan" type="i" />
 
-  <property access="read" name="Table" type="(so)" />
+  <property access="read" name="Table" type="(so)" >
+    <annotation name="org.qtproject.QtDBus.QtTypeName" 
value="QSpiObjectReference"/>
+  </property>
 
   <method name="GetRowColumnSpan">
     <arg direction="out" type="b" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.36.0/xml/Text.xml 
new/at-spi2-core-2.36.1/xml/Text.xml
--- old/at-spi2-core-2.36.0/xml/Text.xml        2020-03-08 00:19:58.000000000 
+0100
+++ new/at-spi2-core-2.36.1/xml/Text.xml        2020-09-05 01:56:27.976104700 
+0200
@@ -65,12 +65,12 @@
     <arg direction="out" type="a{ss}"/>
     <arg direction="out" name="startOffset" type="i"/>
     <arg direction="out" name="endOffset" type="i"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
   </method>
 
   <method name="GetDefaultAttributes">
     <arg direction="out" type="a{ss}"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
   </method>
 
   <method name="GetCharacterExtents">
@@ -136,7 +136,7 @@
     <arg direction="in" name="xClipType" type="u"/>
     <arg direction="in" name="yClipType" type="u"/>
     <arg direction="out" type="a(iisv)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiRangeList"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiRangeList"/>
   </method>
 
   <method name="GetAttributeRun">
@@ -145,11 +145,12 @@
     <arg direction="out" type="a{ss}"/>
     <arg direction="out" name="startOffset" type="i"/>
     <arg direction="out" name="endOffset" type="i"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
   </method>
 
   <method name="GetDefaultAttributeSet">
     <arg direction="out" type="a{ss}"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" 
value="QSpiAttributeSet"/>
   </method>
 
   <method name="ScrollSubstringTo">


Reply via email to