Skip to content

Commit baaf570

Browse files
committed
[BUGFIX] Extend WFS field type description (time)
Continue commit 2ad32f1
1 parent 95f83b4 commit baaf570

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/server/qgswfsprojectparser.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,8 @@ void QgsWFSProjectParser::describeFeatureType( const QString& aTypeName, QDomEle
437437
geomElem.setAttribute( "type", "boolean" );
438438
else if ( attributeType == QVariant::Date )
439439
geomElem.setAttribute( "type", "date" );
440+
else if ( attributeType == QVariant::Time )
441+
geomElem.setAttribute( "type", "time" );
440442
else if ( attributeType == QVariant::DateTime )
441443
geomElem.setAttribute( "type", "dateTime" );
442444
else

0 commit comments

Comments
 (0)