summaryrefslogtreecommitdiffstats
path: root/tests/auto/qgeotiledmap
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qgeotiledmap')
-rw-r--r--tests/auto/qgeotiledmap/tst_qgeotiledmap.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/qgeotiledmap/tst_qgeotiledmap.cpp b/tests/auto/qgeotiledmap/tst_qgeotiledmap.cpp
index 5450e4c2..d0598849 100644
--- a/tests/auto/qgeotiledmap/tst_qgeotiledmap.cpp
+++ b/tests/auto/qgeotiledmap/tst_qgeotiledmap.cpp
@@ -91,7 +91,8 @@ void tst_QGeoTiledMap::initTestCase()
m_map->setActiveMapType(m_map->m_engine->supportedMapTypes().first());
m_fetcher = static_cast<QGeoTileFetcherTest*>(m_map->m_engine->tileFetcher());
m_tilesCounter.reset(new FetchTileCounter());
- connect(m_fetcher, SIGNAL(tileFetched(const QGeoTileSpec&)), m_tilesCounter.get(), SLOT(tileFetched(const QGeoTileSpec&)));
+ connect(m_fetcher, SIGNAL(tileFetched(QGeoTileSpec)),
+ m_tilesCounter.get(), SLOT(tileFetched(QGeoTileSpec)));
}
void tst_QGeoTiledMap::fetchTiles()