diff options
author | Andre Heinecke <[email protected]> | 2016-07-05 20:11:42 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-07-05 20:11:42 +0000 |
commit | 49a6ee50587c9d4b6f07e60ce1a939c863e7f15c (patch) | |
tree | 0108b2810269eebe3c1f4c9c0be04a411383c3b7 /lang/qt/tests/t-keylist.cpp | |
parent | Qt: More robust lookup of Cpp's context.h (diff) | |
download | gpgme-49a6ee50587c9d4b6f07e60ce1a939c863e7f15c.tar.gz gpgme-49a6ee50587c9d4b6f07e60ce1a939c863e7f15c.zip |
Qt: Fix test build with Qt < 5.4.0
* lang/qt/tests/t-keylist.cpp,
lang/qt/tests/t-keylocate.cpp,
lang/qt/tests/t-ownertrust.cpp: Use old style SIGNAl syntax for
QSignalSpy
Diffstat (limited to 'lang/qt/tests/t-keylist.cpp')
-rw-r--r-- | lang/qt/tests/t-keylist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/tests/t-keylist.cpp b/lang/qt/tests/t-keylist.cpp index 40cb13c0..5d63fcab 100644 --- a/lang/qt/tests/t-keylist.cpp +++ b/lang/qt/tests/t-keylist.cpp @@ -69,7 +69,7 @@ private Q_SLOTS: Q_EMIT asyncDone(); }); job->start(QStringList() << "[email protected]"); - QSignalSpy spy (this, &KeyListTest::asyncDone); + QSignalSpy spy (this, SIGNAL(asyncDone())); Q_ASSERT(spy.wait()); } |