aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2016-09-15 14:22:13 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2016-09-15 14:22:13 +0900
commite4dd38fe63eb3035b2df0db859c65d31db9c1ea8 (patch)
treee411ba6dd1cf4181ca83f796f39ff41e27e0b6cf
parent53a941afe548be49585aadda336c0e4c05ff3ff1 (diff)
downloadlibquotient-e4dd38fe63eb3035b2df0db859c65d31db9c1ea8.tar.gz
libquotient-e4dd38fe63eb3035b2df0db859c65d31db9c1ea8.zip
Connection: Don't return SyncJob* from sync()
Given that Connection handles all the output from SyncJob already, there's no use in having the pointer. In fact, it's not used in Quaternion, and Tensor, to the contrary, has a problem _because_ this pointer is grabbed by the QML engine that mistakenly tries to handle its lifecycle.
-rw-r--r--connection.cpp5
-rw-r--r--connection.h2
2 files changed, 3 insertions, 4 deletions
diff --git a/connection.cpp b/connection.cpp
index aebe7631..9f56ec96 100644
--- a/connection.cpp
+++ b/connection.cpp
@@ -163,10 +163,10 @@ void Connection::logout()
job->start();
}
-SyncJob* Connection::sync(int timeout)
+void Connection::sync(int timeout)
{
if (d->syncJob)
- return d->syncJob;
+ return;
const QString filter = "{\"room\": { \"timeline\": { \"limit\": 100 } } }";
auto job = d->startSyncJob(filter, timeout);
@@ -187,7 +187,6 @@ SyncJob* Connection::sync(int timeout)
else
emit connectionError(job->errorString());
});
- return job;
}
SyncJob* Connection::Private::startSyncJob(const QString& filter, int timeout)
diff --git a/connection.h b/connection.h
index d5cf4883..fed0b1c4 100644
--- a/connection.h
+++ b/connection.h
@@ -52,7 +52,7 @@ namespace QMatrixClient
Q_INVOKABLE virtual void disconnectFromServer();
Q_INVOKABLE virtual void logout();
- Q_INVOKABLE virtual SyncJob* sync(int timeout=-1);
+ Q_INVOKABLE virtual void sync(int timeout=-1);
Q_INVOKABLE virtual void postMessage( Room* room, QString type, QString message );
Q_INVOKABLE virtual PostReceiptJob* postReceipt( Room* room, Event* event );
Q_INVOKABLE virtual void joinRoom( QString roomAlias );