Skip to content

Commit

Permalink
fix precise build
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 19, 2015
1 parent 8b9e0b6 commit abaeb5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/providers/grass/qgsgrassvectormaplayer.h
Expand Up @@ -36,10 +36,10 @@ class GRASS_LIB_EXPORT QgsGrassVectorMapLayer : public QObject
bool isValid() const { return mValid; }
QgsGrassVectorMap *map() { return mMap; }
QgsFields & fields() { return mFields; }
QMap<int, QList<QVariant>> & attributes() { return mAttributes; }
QMap<int, QList<QVariant> > & attributes() { return mAttributes; }
bool hasTable() { return mHasTable; }
int keyColumn() { return mKeyColumn; }
QList<QPair<double, double>> minMax() { return mMinMax; }
QList< QPair<double, double> > minMax() { return mMinMax; }
int userCount() { return mUsers; }
void addUser();
void removeUser();
Expand All @@ -64,9 +64,9 @@ class GRASS_LIB_EXPORT QgsGrassVectorMapLayer : public QObject
int mKeyColumn;
QgsFields mFields;
// Map of attributes with cat as key
QMap<int, QList<QVariant>> mAttributes;
QMap<int, QList<QVariant> > mAttributes;
// minimum and maximum values of attributes
QList<QPair<double, double>> mMinMax;
QList<QPair<double, double> > mMinMax;
// timestamp when attributes were loaded
QDateTime mLastLoaded;
// number of instances using this layer
Expand Down

0 comments on commit abaeb5f

Please sign in to comment.