Skip to content

Commit e51fed4

Browse files
3nidsnyalldawson
authored andcommitted
use nullptr instead of 0 pointer
1 parent 8876270 commit e51fed4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/quickgui/qgsquickcoordinatetransformer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class QUICK_EXPORT QgsQuickCoordinateTransformer : public QObject
5757

5858
public:
5959
//! Creates new coordinate transformer
60-
explicit QgsQuickCoordinateTransformer( QObject *parent = 0 );
60+
explicit QgsQuickCoordinateTransformer( QObject *parent = nullptr );
6161

6262
//!\copydoc QgsQuickCoordinateTransformer::projectedPosition
6363
QgsPoint projectedPosition() const;

src/quickgui/qgsquickpositionkit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class QUICK_EXPORT QgsQuickPositionKit : public QObject
116116

117117
public:
118118
//! Creates new position kit
119-
explicit QgsQuickPositionKit( QObject *parent = 0 );
119+
explicit QgsQuickPositionKit( QObject *parent = nullptr );
120120

121121
//! \copydoc QgsQuickPositionKit::position
122122
bool hasPosition() const;

0 commit comments

Comments
 (0)