+2006-04-29 Thiago Macieira <thiago.macieira@trolltech.com>
+
+ * qt/dbusidl2cpp.cpp: There's no callAsync. Use the correct
+ call. (r535506)
+
2006-04-29 Thiago Macieira <thiago.macieira@trolltech.com>
* qt/examples/dbus.cpp: Enhance error messages and use
else if (!isAsync)
hs << " return call(QLatin1String(\"";
else
- hs << " callAsync(QLatin1String(\"";
+ hs << " call(NoWaitForReply, QLatin1String(\"";
// rebuild the method input signature:
QString signature = QChar('.');
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++;