Merge pull request #1264 from olivierdalang/fix_9334

fix #9334
This commit is contained in:
mhugent 2014-03-26 19:51:12 +01:00
commit 019f121720

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