0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-23 08:29:07 +03:00

Build has been fixed

This commit is contained in:
Arin Alexander
2018-03-22 23:00:51 +03:00
parent a072e84173
commit fbbf6af33d
6 changed files with 31 additions and 1 deletions

View File

@@ -312,7 +312,11 @@ QStringList ReportStructureCompleater::extractSlotNames(BaseDesignIntf *item)
for(int i = mo->methodOffset(); i < mo->methodCount(); ++i)
{
if (mo->method(i).methodType() == QMetaMethod::Signal) {
#ifndef HAVE_QT4
result.append(QString::fromLatin1(mo->method(i).name()));
#else
result.append(QString::fromLatin1(mo->method(i).signature()));
#endif
}
}
mo = mo->superClass();