コード例 #1
0
static QString slotSignature(const QString& name)
{
    auto it = slotsSignatures.find(name);
    if (it == slotsSignatures.end())
        peg.fatalError("Cannot recognize slot " + name);

    return it.value();
}