Skip to content

Commit

Permalink
Merge pull request #1264 from olivierdalang/fix_9334
Browse files Browse the repository at this point in the history
fix #9334
  • Loading branch information
mhugent committed Mar 26, 2014
2 parents 3d6f17b + 9aab894 commit 019f121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayer.h
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

0 comments on commit 019f121

Please sign in to comment.