LimeReport icon indicating copy to clipboard operation
LimeReport copied to clipboard

When executing the designReport() function, if there are more controls in my template, it will crash.

Open Arrow-qaq opened this issue 2 years ago • 1 comments

"The stack error shows an array out of bounds."

QList<CompleterItem > CompleterModel::findItems(const QString &text, Qt::MatchFlags flags, int column) const { QModelIndexList indexes = match(index(0, column, QModelIndex()), Qt::DisplayRole, text, -1, flags); QList<CompleterItem> items; const int numIndexes = indexes.size(); items.reserve(numIndexes); for (int i = 0; i < numIndexes; ++i) items.append(itemFromIndex(indexes.at(i))); return items; }

Arrow-qaq avatar Sep 08 '23 01:09 Arrow-qaq

Hi, could you send me an example

fralx avatar Sep 13 '23 20:09 fralx