| 5470 | } |
| 5471 | |
| 5472 | QString EventBrowser::GetExportString(int indent, bool firstchild, const QModelIndex &idx) |
| 5473 | { |
| 5474 | QString prefix = QString(indent * 2 - (firstchild ? 1 : 0), QLatin1Char(' ')); |
| 5475 | if(firstchild) |
| 5476 | prefix += QLatin1Char('\\'); |
| 5477 | |
| 5478 | return QFormatStr("%1- %2").arg(prefix).arg( |
| 5479 | RichResourceTextFormat(m_Ctx, idx.data(Qt::DisplayRole))); |
| 5480 | } |
| 5481 | |
| 5482 | void EventBrowser::GetMaxNameLength(int &maxNameLength, int indent, bool firstchild, |
| 5483 | const QModelIndex &idx) |
nothing calls this directly
no test coverage detected