mirror of https://github.com/CGAL/cgal
Fix string comparison
This commit is contained in:
parent
c1f315f500
commit
b21f8a412d
|
|
@ -2652,7 +2652,7 @@ QString MainWindow::get_item_stats()
|
|||
QString classname = item->property("classname").toString();
|
||||
if(classname.isEmpty())
|
||||
classname = item->metaObject()->className();
|
||||
if(classnames.at(i).contains(classname))
|
||||
if(classnames.at(i) == classname)
|
||||
{
|
||||
items[i] << s_item;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue