Skip to content

Commit

Permalink
Fix indentation as requested by Travis
Browse files Browse the repository at this point in the history
NOTE: I do have the prepare-commit.sh hook in place, but it did
      not handle this
  • Loading branch information
strk committed May 16, 2017
1 parent 4ed096b commit 0bac937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/core/testqgslabelingengine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ void TestQgsLabelingEngine::testRegisterFeatureUnprojectible()
settings.fitInPolygonOnly = true;

std::unique_ptr< QgsVectorLayer> vl2( new QgsVectorLayer( "polygon?crs=epsg:4326&field=id:integer", "vl", "memory" ) );
QgsVectorLayerLabelProvider* provider = new QgsVectorLayerLabelProvider( vl2.get(), "test", true, &settings );
QgsVectorLayerLabelProvider *provider = new QgsVectorLayerLabelProvider( vl2.get(), "test", true, &settings );
QgsFeature f( vl2->fields(), 1 );

QString wkt1 = "POLYGON((0 0,8 0,8 -90,0 0))";
Expand Down

0 comments on commit 0bac937

Please sign in to comment.