From: Thiago Macieira Date: Sat, 29 Apr 2006 17:22:47 +0000 (+0000) Subject: * qt/dbusidl2cpp.cpp: There's no callAsync. Use the correct X-Git-Tag: dbus-0.62~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c31815270cd8fc9b97be6fb1b51b7c9118313b01;p=platform%2Fupstream%2Fdbus.git * qt/dbusidl2cpp.cpp: There's no callAsync. Use the correct call. (r535506) --- diff --git a/ChangeLog b/ChangeLog index 889a6e36..c8fc523c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-04-29 Thiago Macieira + + * qt/dbusidl2cpp.cpp: There's no callAsync. Use the correct + call. (r535506) + 2006-04-29 Thiago Macieira * qt/examples/dbus.cpp: Enhance error messages and use diff --git a/qt/dbusidl2cpp.cpp b/qt/dbusidl2cpp.cpp index 67bd6491..eb1a1b1e 100644 --- a/qt/dbusidl2cpp.cpp +++ b/qt/dbusidl2cpp.cpp @@ -509,7 +509,7 @@ static void writeProxy(const char *proxyFile, const QDBusIntrospection::Interfac else if (!isAsync) hs << " return call(QLatin1String(\""; else - hs << " callAsync(QLatin1String(\""; + hs << " call(NoWaitForReply, QLatin1String(\""; // rebuild the method input signature: QString signature = QChar('.'); @@ -523,7 +523,7 @@ static void writeProxy(const char *proxyFile, const QDBusIntrospection::Interfac for (int i = 0; i < method.inputArgs.count(); ++i) hs << ", " << argNames.at(argPos++); - // close the QDBusIntrospection::call/callAsync call + // close the QDBusIntrospection::call call hs << ");" << endl; argPos++;