Fixed not shown "uint" parameters

git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@61 620bd6b2-0a58-f614-fd9a-1bd335dccda9
This commit is contained in:
matlabbe 2012-01-04 20:44:58 +00:00
parent d7247fba70
commit 095aa8a1e9

View File

@ -99,7 +99,7 @@ void ParametersToolBox::addParameter(QVBoxLayout * layout,
{ {
addParameter(layout, key, value.toInt()); addParameter(layout, key, value.toInt());
} }
else if(type.compare("unsigned int") == 0) else if(type.compare("uint") == 0)
{ {
addParameter(layout, key, value.toInt()); addParameter(layout, key, value.toInt());
} }