Gui: fix ExpressionCompleter for property

This commit is contained in:
Zheng, Lei
2019-08-23 09:54:13 +08:00
committed by wmayer
parent 8e2a059e70
commit 3e0cfb4ba5

View File

@@ -231,13 +231,8 @@ public:
if(count)
*count = propSize;
}
if(v) {
QString res;
if(sep)
res = QLatin1String(".");
res += QString::fromLatin1(prop->getName());
*v = res;
}
if(v)
*v = QString::fromLatin1(prop->getName());
return;
}