Skip to content

Commit 019f121

Browse files
committedMar 26, 2014
Merge pull request #1264 from olivierdalang/fix_9334
fix #9334
2 parents 3d6f17b + 9aab894 commit 019f121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsvectorlayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer
497497

498498
struct RangeData
499499
{
500-
RangeData() {}
500+
RangeData() { mMin = QVariant(0); mMax = QVariant(5); mStep = QVariant(1);}
501501
RangeData( QVariant theMin, QVariant theMax, QVariant theStep )
502502
: mMin( theMin ), mMax( theMax ), mStep( theStep ) {}
503503

0 commit comments

Comments
 (0)
Please sign in to comment.