| 1510 | } |
| 1511 | |
| 1512 | static QString zzfiQuery(SliceModel* s) |
| 1513 | { |
| 1514 | if (!s) return "?;"; |
| 1515 | int bw = s->filterHigh() - s->filterLow(); |
| 1516 | return QString("ZZFI%1;").arg(bwToZZFIIndex(qAbs(bw)), 2, 10, QChar('0')); |
| 1517 | } |
| 1518 | |
| 1519 | static QString zzfijSet(SliceModel* s, const QString& arg, const QString& prefix) |
| 1520 | { |
no test coverage detected