Skip to content

Commit da59949

Browse files
committed
add missing inclue of qgslogger
1 parent 3711a17 commit da59949

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

tests/src/core/testqgsvectorfilewriter.cpp

+10-9
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,16 @@
1818
#include <QStringList>
1919
#include <QApplication>
2020

21-
#include <qgsvectorlayer.h> //defines QgsFieldMap
22-
#include <qgsvectorfilewriter.h> //logic for writing shpfiles
23-
#include <qgsfeature.h> //we will need to pass a bunch of these for each rec
24-
#include <qgsgeometry.h> //each feature needs a geometry
25-
#include <qgspoint.h> //we will use point geometry
26-
#include <qgscoordinatereferencesystem.h> //needed for creating a srs
27-
#include <qgsapplication.h> //search path for srs.db
28-
#include <qgsfield.h>
29-
#include <qgis.h> //defines GEOWkt
21+
#include "qgsvectorlayer.h" //defines QgsFieldMap
22+
#include "qgsvectorfilewriter.h" //logic for writing shpfiles
23+
#include "qgsfeature.h" //we will need to pass a bunch of these for each rec
24+
#include "qgsgeometry.h" //each feature needs a geometry
25+
#include "qgspoint.h" //we will use point geometry
26+
#include "qgscoordinatereferencesystem.h" //needed for creating a srs
27+
#include "qgsapplication.h" //search path for srs.db
28+
#include "qgslogger.h"
29+
#include "qgsfield.h"
30+
#include "qgis.h" //defines GEOWkt
3031

3132
#if defined(linux)
3233
#include <langinfo.h>

0 commit comments

Comments
 (0)