From 6bead3d3d08b6405a32ea6d5fc966fc70d889824 Mon Sep 17 00:00:00 2001 From: Emanoil Kotsev Date: Sat, 29 Jun 2019 16:56:27 +0000 Subject: [PATCH] Fix problem with d-feet and annotation missing value attribute Signed-off-by: Emanoil Kotsev --- src/tools/dbusxml2qt3/methodgen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tools/dbusxml2qt3/methodgen.cpp b/src/tools/dbusxml2qt3/methodgen.cpp index 882c1cd..a7e3427 100644 --- a/src/tools/dbusxml2qt3/methodgen.cpp +++ b/src/tools/dbusxml2qt3/methodgen.cpp @@ -1710,6 +1710,8 @@ void MethodGenerator::writeIntrospectionDataMethod(const Class& classData, } stream << " asyncAnnotationElement.setAttribute(\"name\", " << "\"org.freedesktop.DBus.GLib.Async\");" << endl; + stream << " asyncAnnotationElement.setAttribute(\"value\", " + << "\"true\");" << endl; stream << " methodElement.appendChild(asyncAnnotationElement);" << endl; }