Added return true to parseNode function so it would compile on win32

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@1892 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
gsherman 2004-08-18 03:14:20 +00:00
parent 490d371370
commit 196b4a9e7a

View File

@ -36,6 +36,8 @@ bool GPSObject::parseNode(const QDomNode& node) {
node2 = node.namedItem("url");
if (!node2.isNull())
url = (const char*)node2.firstChild().nodeValue();
//TODO - gsherman added this to get it to compile under win32
return true;
}