Skip to content

Commit

Permalink
wmts: fix dimension support
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Apr 24, 2013
1 parent 3e13171 commit 0b6dab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmsprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ bool QgsWmsProvider::parseUri( QString uriString )
if ( uri.hasParam( "tileDimensions" ) )
{
mTiled = true;
foreach ( QString param, uri.params( "tileDimensions" ) )
foreach ( QString param, uri.param( "tileDimensions" ).split( ";" ) )
{
QStringList kv = param.split( "=" );
if ( kv.size() == 1 )
Expand Down

0 comments on commit 0b6dab9

Please sign in to comment.