| 11 | // without needing a full RcxController/RcxDocument/RcxEditor stack. |
| 12 | |
| 13 | static QString buildSourceLabel(const Provider& prov) { |
| 14 | QString provName = prov.name(); |
| 15 | if (provName.isEmpty()) |
| 16 | return QStringLiteral("source\u25BE"); |
| 17 | return QStringLiteral("'%1'\u25BE").arg(provName); |
| 18 | } |
| 19 | |
| 20 | static QString buildCommandRow(const Provider& prov, uint64_t baseAddress) { |
| 21 | QString src = buildSourceLabel(prov); |
no test coverage detected