Skip to content

Commit

Permalink
sip fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Apr 21, 2020
1 parent 41db54a commit da47644
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -83,7 +83,7 @@ Sets the minimum zoom level of tiles. Allowed values are in interval [0,24]
Sets the maximum zoom level of tiles. Allowed values are in interval [0,24]
%End

void setLayers( const QList<Layer> &layers );
void setLayers( const QList<QgsVectorTileWriter::Layer> &layers );
%Docstring
Sets vector layers and their configuration for output of vector tiles
%End
Expand Down
2 changes: 1 addition & 1 deletion src/core/vectortile/qgsvectortilewriter.h
Expand Up @@ -87,7 +87,7 @@ class CORE_EXPORT QgsVectorTileWriter
void setMaxZoom( int maxZoom ) { mMaxZoom = maxZoom; }

//! Sets vector layers and their configuration for output of vector tiles
void setLayers( const QList<Layer> &layers ) { mLayers = layers; }
void setLayers( const QList<QgsVectorTileWriter::Layer> &layers ) { mLayers = layers; }

/**
* Writes vector tiles according to the configuration.
Expand Down

0 comments on commit da47644

Please sign in to comment.