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 95f83b4 commit baaf570
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/server/qgswfsprojectparser.cpp
Expand Up @@ -437,6 +437,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 baaf570

Please sign in to comment.