Include all types in completion
This commit is contained in:
@@ -455,7 +455,7 @@ QStringList ScriptEngine::complete(const QString &line)
|
|||||||
while(it.hasNext())
|
while(it.hasNext())
|
||||||
{
|
{
|
||||||
it.next();
|
it.next();
|
||||||
if((it.value().isCallable() || it.value().isObject()) && it.name() != "contructor" && it.name() != "objectNameChanged")
|
if(it.name() != "constructor" && it.name() != "objectNameChanged")
|
||||||
complete.append(var + "." + it.name());
|
complete.append(var + "." + it.name());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user