Skip to content

Commit 3dfd5ab

Browse files
authored
Awilliams/qdocwarnings fix (#478)
* [doc] locationdatasource errors links fixed. * [doc] moved the copyright on top. qdoc was getting confused and trying to parse it as documentation for the class
1 parent c73fbdc commit 3dfd5ab

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

augmentedreality/Common/source/LocationDataSource.cpp

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ using namespace Esri::ArcGISRuntime::Toolkit;
4040
are emitted every time the values change.
4141
4242
Most of the time, it's not necessary to create an object of this class. A default LocationDataSource
43-
is created automatically by \l ArcGISArSceneView when this is necessary. This class is public to
43+
is created automatically by \l ArcGISArView when this is necessary. This class is public to
4444
give the possibility to override the class QGeoPositionInfoSource to support a custom GPS device.
4545
4646
See also {http://doc.qt.io/qt-5/qtpositioning-plugins.html}{Qt Positioning service plugins}.
@@ -339,6 +339,11 @@ void LocationDataSource::updateObjectsAndConnections()
339339
/*!
340340
\fn void Esri::ArcGISRuntime::Toolkit::LocationDataSource::locationChanged(double latitude, double longitude, double altitude);
341341
\brief Signal emitted when the location values change.
342+
\list
343+
\li \a latitude latitude changed
344+
\li \a longitude longitude changed
345+
\li \a altitude altitude changed
346+
\endlist
342347
*/
343348

344349
/*!
@@ -360,3 +365,8 @@ void LocationDataSource::updateObjectsAndConnections()
360365
\fn void Esri::ArcGISRuntime::Toolkit::LocationDataSource::locationTrackingModeChanged();
361366
\brief Signal emitted when the \l locationTrackingMode property changes.
362367
*/
368+
369+
/*!
370+
\property LocationDataSource::started
371+
\brief Holds the property that indicates if the tracking has started.
372+
*/

calcite-qml/Calcite/Calcite.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pragma Singleton
1818
import QtQuick 2.0
1919

2020
/*!
21-
\qmltype Calctie
21+
\qmltype Calcite
2222
\brief Naming conventions and colors taken directly from
2323
\l{https://developers.arcgis.com/calcite-design-system/foundations/colors}
2424
{Calcite colors and themes}.

calcite-qml/Calcite/SliderHandle.qml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import QtQuick 2.12
2-
31
/*******************************************************************************
42
* Copyright 2012-2021 Esri
53
*
@@ -15,6 +13,9 @@ import QtQuick 2.12
1513
* See the License for the specific language governing permissions and
1614
* limitations under the License.
1715
******************************************************************************/
16+
17+
import QtQuick 2.12
18+
1819
Rectangle {
1920
id: handle
2021

0 commit comments

Comments
 (0)