diff plugin/PluginXml.cpp @ 929:59e7fe1b1003 warnfix_no_size_t

Unsigned removals and warning fixes in data/
author Chris Cannam
date Tue, 17 Jun 2014 14:33:42 +0100
parents a299c4cec0f8
children 5f8fbbde08ff
line wrap: on
line diff
--- a/plugin/PluginXml.cpp	Tue Jun 17 13:52:07 2014 +0100
+++ b/plugin/PluginXml.cpp	Tue Jun 17 14:33:42 2014 +0100
@@ -214,7 +214,7 @@
     QDomNamedNodeMap attrNodes = pluginElt.attributes();
     QXmlAttributes attrs;
 
-    for (unsigned int i = 0; i < attrNodes.length(); ++i) {
+    for (int i = 0; i < attrNodes.length(); ++i) {
         QDomAttr attr = attrNodes.item(i).toAttr();
         if (attr.isNull()) continue;
 //        SVDEBUG << "PluginXml::setParametersFromXml: Adding attribute \"" << attr.name()//                  << "\" with value \"" << attr.value() << "\"" << endl;