Skip to content

Commit

Permalink
[BUGFIX] Extend WFS field type description (time)
Browse files Browse the repository at this point in the history
Continue commit 2ad32f1
  • Loading branch information
rldhont committed Feb 24, 2016
1 parent 3eb5eb2 commit 05471f5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/server/qgswfsprojectparser.cpp
Expand Up @@ -464,6 +464,8 @@ void QgsWFSProjectParser::describeFeatureType( const QString& aTypeName, QDomEle
geomElem.setAttribute( "type", "boolean" );
else if ( attributeType == QVariant::Date )
geomElem.setAttribute( "type", "date" );
else if ( attributeType == QVariant::Time )
geomElem.setAttribute( "type", "time" );
else if ( attributeType == QVariant::DateTime )
geomElem.setAttribute( "type", "dateTime" );
else
Expand Down

0 comments on commit 05471f5

Please sign in to comment.