diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-01-13 17:53:22 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-01-13 17:53:22 +0900 |
commit | 3cb7982fda8c0049eff51a9ab65eb43667e2c4ce (patch) | |
tree | 45a2e7c9bbb1a6522d545cb20102d9d00c371e56 | |
parent | 5544331af35bb3f0533975611d1e432ba6817a5c (diff) | |
download | libquotient-3cb7982fda8c0049eff51a9ab65eb43667e2c4ce.tar.gz libquotient-3cb7982fda8c0049eff51a9ab65eb43667e2c4ce.zip |
Fix building with Qt before 5.10
See https://bugreports.qt.io/browse/QTBUG-60339
-rw-r--r-- | lib/qt_connection_util.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/qt_connection_util.h b/lib/qt_connection_util.h index 2df2b186..c2bde8df 100644 --- a/lib/qt_connection_util.h +++ b/lib/qt_connection_util.h @@ -30,11 +30,16 @@ namespace QMatrixClient { SenderT* sender, SignalT signal, ContextT* context, std::function<bool(ArgTs...)> slot, Qt::ConnectionType connType) { + // See https://bugreports.qt.io/browse/QTBUG-60339 +#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0) + auto pc = std::make_shared<QMetaObject::Connection>(); +#else auto pc = std::make_unique<QMetaObject::Connection>(); +#endif auto& c = *pc; // Resolve a reference before pc is moved to lambda c = QObject::connect(sender, signal, context, [pc=std::move(pc),slot] (ArgTs... args) { - Q_ASSERT(*pc); + Q_ASSERT(*pc); // If it's been triggered, it should exist if (slot(std::forward<ArgTs>(args)...)) QObject::disconnect(*pc); }, connType); |