Skip to content

Commit

Permalink
fix version in added note
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Jan 31, 2017
1 parent 1fce657 commit f85ac23
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions python/core/qgsproject.sip
Expand Up @@ -71,15 +71,15 @@ class QgsProject : QObject, QgsExpressionContextGenerator


/** /**
* Returns the project's native coordinate reference system. * Returns the project's native coordinate reference system.
* @note added in QGIS 2.18 * @note added in QGIS 3.0
* @see setCrs() * @see setCrs()
* @see ellipsoid() * @see ellipsoid()
*/ */
QgsCoordinateReferenceSystem crs() const; QgsCoordinateReferenceSystem crs() const;


/** /**
* Sets the project's native coordinate reference system. * Sets the project's native coordinate reference system.
* @note added in QGIS 2.18 * @note added in QGIS 3.0
* @see crs() * @see crs()
* @see setEllipsoid() * @see setEllipsoid()
*/ */
Expand All @@ -89,15 +89,15 @@ class QgsProject : QObject, QgsExpressionContextGenerator
* Returns a proj string representing the project's ellipsoid setting, e.g., "WGS84". * Returns a proj string representing the project's ellipsoid setting, e.g., "WGS84".
* @see setEllipsoid() * @see setEllipsoid()
* @see crs() * @see crs()
* @note added in QGIS 2.18 * @note added in QGIS 3.0
*/ */
QString ellipsoid() const; QString ellipsoid() const;


/** /**
* Sets the project's ellipsoid from a proj string representation, e.g., "WGS84". * Sets the project's ellipsoid from a proj string representation, e.g., "WGS84".
* @see ellipsoid() * @see ellipsoid()
* @see setCrs() * @see setCrs()
* @note added in QGIS 2.18 * @note added in QGIS 3.0
*/ */
void setEllipsoid( const QString& ellipsoid ); void setEllipsoid( const QString& ellipsoid );


Expand Down Expand Up @@ -283,7 +283,7 @@ class QgsProject : QObject, QgsExpressionContextGenerator


/** /**
* Sets the default distance measurement units for the project. * Sets the default distance measurement units for the project.
* @note added in QGIS 2.18 * @note added in QGIS 3.0
* @see distanceUnits() * @see distanceUnits()
* @see setAreaUnits() * @see setAreaUnits()
*/ */
Expand All @@ -297,7 +297,7 @@ class QgsProject : QObject, QgsExpressionContextGenerator


/** /**
* Sets the default area measurement units for the project. * Sets the default area measurement units for the project.
* @note added in QGIS 2.18 * @note added in QGIS 3.0
* @see areaUnits() * @see areaUnits()
* @see setDistanceUnits() * @see setDistanceUnits()
*/ */
Expand Down
12 changes: 6 additions & 6 deletions src/core/qgsproject.h
Expand Up @@ -133,15 +133,15 @@ class CORE_EXPORT QgsProject : public QObject, public QgsExpressionContextGenera


/** /**
* Returns the project's native coordinate reference system. * Returns the project's native coordinate reference system.
* @note added in QGIS 2.18 * @note added in QGIS 3.0
* @see setCrs() * @see setCrs()
* @see ellipsoid() * @see ellipsoid()
*/ */
QgsCoordinateReferenceSystem crs() const; QgsCoordinateReferenceSystem crs() const;


/** /**
* Sets the project's native coordinate reference system. * Sets the project's native coordinate reference system.
* @note added in QGIS 2.18 * @note added in QGIS 3.0
* @see crs() * @see crs()
* @see setEllipsoid() * @see setEllipsoid()
*/ */
Expand All @@ -151,15 +151,15 @@ class CORE_EXPORT QgsProject : public QObject, public QgsExpressionContextGenera
* Returns a proj string representing the project's ellipsoid setting, e.g., "WGS84". * Returns a proj string representing the project's ellipsoid setting, e.g., "WGS84".
* @see setEllipsoid() * @see setEllipsoid()
* @see crs() * @see crs()
* @note added in QGIS 2.18 * @note added in QGIS 3.0
*/ */
QString ellipsoid() const; QString ellipsoid() const;


/** /**
* Sets the project's ellipsoid from a proj string representation, e.g., "WGS84". * Sets the project's ellipsoid from a proj string representation, e.g., "WGS84".
* @see ellipsoid() * @see ellipsoid()
* @see setCrs() * @see setCrs()
* @note added in QGIS 2.18 * @note added in QGIS 3.0
*/ */
void setEllipsoid( const QString& ellipsoid ); void setEllipsoid( const QString& ellipsoid );


Expand Down Expand Up @@ -343,7 +343,7 @@ class CORE_EXPORT QgsProject : public QObject, public QgsExpressionContextGenera


/** /**
* Sets the default distance measurement units for the project. * Sets the default distance measurement units for the project.
* @note added in QGIS 2.18 * @note added in QGIS 3.0
* @see distanceUnits() * @see distanceUnits()
* @see setAreaUnits() * @see setAreaUnits()
*/ */
Expand All @@ -357,7 +357,7 @@ class CORE_EXPORT QgsProject : public QObject, public QgsExpressionContextGenera


/** /**
* Sets the default area measurement units for the project. * Sets the default area measurement units for the project.
* @note added in QGIS 2.18 * @note added in QGIS 3.0
* @see areaUnits() * @see areaUnits()
* @see setDistanceUnits() * @see setDistanceUnits()
*/ */
Expand Down

0 comments on commit f85ac23

Please sign in to comment.