This commit is contained in:
olivierdalang 2014-03-25 18:26:17 +01:00
parent 19da71cca0
commit 9aab894f58

View File

@ -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 ) {}