summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@trolltech.com>2006-04-29 17:22:46 +0000
committerJohn Palmieri <johnp@remedyz.boston.redhat.com>2006-06-28 08:15:15 -0400
commit840e6d9de9b4fba56c0081f0007ceefcf1a496b6 (patch)
tree397ba8fbdd98ba4b197653a008a7cc96dec48eba
parent68b1bc13230ea50c17a2ad2fa5a6cb645924d293 (diff)
* qt/dbusidl2cpp.cpp: There's no callAsync. Use the correct call. (r535506)
-rw-r--r--qt/dbusidl2cpp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/dbusidl2cpp.cpp b/qt/dbusidl2cpp.cpp
index 67bd649..eb1a1b1 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++;