Added test for signal with typedef

Reviewer: Renato Filho <renato.filho@openbossa.org>
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
This commit is contained in:
Lauro Neto 2011-08-09 15:28:06 -03:00
commit d64e0a5567
5 changed files with 51 additions and 1 deletions

View file

@ -24,3 +24,9 @@ TestObject::emitSignalWithDefaultValue_bool()
emit signalWithDefaultValue(true);
}
void
TestObject::emitSignalWithTypedefValue(int value)
{
emit signalWithTypedefValue(TypedefValue(value));
}