Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Do not initialize unique_ptr to nullptr
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/app/qgsrasterlayerproperties.h
|
@@ -206,7 +206,7 @@ class APP_EXPORT QgsRasterLayerProperties : public QgsOptionsDialogBase, private |
|
|
qreal mGradientWidth; |
|
|
|
|
|
QgsMapCanvas *mMapCanvas = nullptr; |
|
|
std::unique_ptr<QgsMapToolEmitPoint> mPixelSelectorTool = nullptr; |
|
|
std::unique_ptr<QgsMapToolEmitPoint> mPixelSelectorTool; |
|
|
|
|
|
QgsRasterHistogramWidget *mHistogramWidget = nullptr; |
|
|
|
|
|