Skip to content

Commit

Permalink
fix #9334
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierdalang committed Mar 25, 2014
1 parent 19da71c commit 9aab894
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 9aab894

Please sign in to comment.