Initial parsing of glabels files.

This commit is contained in:
Jim Evins
2014-09-25 22:56:24 -04:00
parent b318efd68e
commit 3d9875545c
15 changed files with 671 additions and 139 deletions
+2 -2
View File
@@ -92,8 +92,8 @@ namespace libglabels
void XmlVendorParser::parseVendorNode( const QDomElement &node )
{
QString name = XmlUtil::getAttr( node, "name", "" );
QString url = XmlUtil::getAttr( node, "url", "" );
QString name = XmlUtil::getStringAttr( node, "name", "" );
QString url = XmlUtil::getStringAttr( node, "url", "" );
Vendor *vendor = new Vendor( name, url );
if ( vendor != NULL )