From 397a31b187d537f81610007b7d0f6f69b306dfd4 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 11 Apr 2019 11:08:32 +0200 Subject: QDeclarativeGeoMapItemView: Silence MSVC warnings about comments Add space, fixing: declarativemaps\qdeclarativegeomapitemview.cpp(143): warning C4138: '*/' found outside of comment declarativemaps\qdeclarativegeomapitemview.cpp(148): warning C4138: '*/' found outside of comment declarativemaps\qdeclarativegeomapitemview.cpp(153): warning C4138: '*/' found outside of comment Change-Id: Ia63ebb4553661bac1af4dce1adf00befbaa34a87 Reviewed-by: Paolo Angelelli --- src/location/declarativemaps/qdeclarativegeomapitemview.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/location/declarativemaps/qdeclarativegeomapitemview.cpp b/src/location/declarativemaps/qdeclarativegeomapitemview.cpp index 90736d23..ad3ddd3a 100644 --- a/src/location/declarativemaps/qdeclarativegeomapitemview.cpp +++ b/src/location/declarativemaps/qdeclarativegeomapitemview.cpp @@ -140,17 +140,17 @@ void QDeclarativeGeoMapItemView::classBegin() // connect(m_delegateModel, &QQmlInstanceModel::initItem, this, &QDeclarativeGeoMapItemView::initItem); } -void QDeclarativeGeoMapItemView::destroyingItem(QObject */*object*/) +void QDeclarativeGeoMapItemView::destroyingItem(QObject * /*object*/) { } -void QDeclarativeGeoMapItemView::initItem(int /*index*/, QObject */*object*/) +void QDeclarativeGeoMapItemView::initItem(int /*index*/, QObject * /*object*/) { } -void QDeclarativeGeoMapItemView::createdItem(int index, QObject */*object*/) +void QDeclarativeGeoMapItemView::createdItem(int index, QObject * /*object*/) { if (!m_map) return; -- cgit v1.2.1