From cc725c61de449885af0c95c4a03a2cda2827e497 Mon Sep 17 00:00:00 2001 From: "Rebecca N. Palmer" Date: Tue, 24 Nov 2015 18:40:54 +0000 Subject: [PATCH] Use SLOT for both uses of QTimer::singleShot (fix Qt < 5.4 build) --- src/GUI/LocationWidget.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/LocationWidget.cxx b/src/GUI/LocationWidget.cxx index c54078713..cdcd5a93a 100644 --- a/src/GUI/LocationWidget.cxx +++ b/src/GUI/LocationWidget.cxx @@ -329,7 +329,7 @@ private slots: m_search.reset(); emit searchComplete(); } else { - QTimer::singleShot(100, this, &NavSearchModel::onSearchResultsPoll); + QTimer::singleShot(100, this, SLOT(onSearchResultsPoll())); } } -- 2.39.5