Complete signals, slots and generate slots of QML items.

This commit is contained in:
Roberto Raggi
2010-01-26 10:19:42 +01:00
parent 2a5506b1d0
commit bf8c0b8a22
3 changed files with 37 additions and 12 deletions

View File

@@ -410,7 +410,21 @@ private:
return true;
}
virtual bool processSignal(const QString &name, const Interpreter::Value *value)
{
if (! _globalCompletion)
_properties.insert(name, value);
return true;
}
virtual bool processSlot(const QString &name, const Interpreter::Value *value)
{
if (! _globalCompletion)
_properties.insert(name, value);
return true;
}
virtual bool processGeneratedSlot(const QString &name, const Interpreter::Value *value)
{
if (_globalCompletion)
_properties.insert(name, value);