Showing with 1 addition and 1 deletion.
  1. +1 −1 src/core/qgsvectorlayer.h
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer

struct RangeData
{
RangeData() {}
RangeData() { mMin = QVariant(0); mMax = QVariant(5); mStep = QVariant(1);}
RangeData( QVariant theMin, QVariant theMax, QVariant theStep )
: mMin( theMin ), mMax( theMax ), mStep( theStep ) {}

Expand Down