Skip to content

Commit b84f014

Browse files
authoredMar 2, 2018
Merge pull request #6503 from m-kuhn/variousFixes
Various fixes
2 parents 9580a88 + fc5073d commit b84f014

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎python/core/geometry/qgsgeometry.sip.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ This is much faster then calling the non-const get() method.
100100

101101
.. versionadded:: 3.0
102102

103-
.. seealso:: :py:func:`primitive`
104-
105103
.. seealso:: :py:func:`set`
104+
105+
.. seealso:: :py:func:`get`
106106
%End
107107

108108
QgsAbstractGeometry *get();

‎src/app/qgsabout.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ void QgsAbout::btnQgisUser_clicked()
275275

276276
void QgsAbout::btnQgisHome_clicked()
277277
{
278-
openUrl( QStringLiteral( "http://qgis.org" ) );
278+
openUrl( QStringLiteral( "https://qgis.org" ) );
279279
}
280280

281281
void QgsAbout::openUrl( const QUrl &url )

‎src/core/geometry/qgsgeometry.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ class CORE_EXPORT QgsGeometry
175175
* \note In QGIS 2.x this method was named geometry().
176176
*
177177
* \since QGIS 3.0
178-
* \see primitive()
179178
* \see set()
179+
* \see get()
180180
*/
181181
const QgsAbstractGeometry *constGet() const;
182182

0 commit comments

Comments
 (0)
Please sign in to comment.