Skip to content

Commit

Permalink
[BUGFIX] QgsOgcUtils: fix typo contians -> contains
Browse files Browse the repository at this point in the history
This has been fix in feature 'QgsOgcUtils: add conversion from QgsSQLStatement to OGC filters' 1da1c27
  • Loading branch information
rldhont committed Nov 7, 2016
1 parent e90263a commit b2b67ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsogcutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1669,7 +1669,7 @@ static bool isSpatialOperator( const QString& tagName )
static QStringList spatialOps;
if ( spatialOps.isEmpty() )
{
spatialOps << "BBOX" << "Intersects" << "Contians" << "Crosses" << "Equals"
spatialOps << "BBOX" << "Intersects" << "Contains" << "Crosses" << "Equals"
<< "Disjoint" << "Overlaps" << "Touches" << "Within";
}

Expand Down

0 comments on commit b2b67ee

Please sign in to comment.