| 106 | #endif |
| 107 | |
| 108 | QVector<QStringList> XLSXFilter::previewForCurrentDataRegion(int lines, bool* okToMatrix) { |
| 109 | #ifdef HAVE_QXLSX |
| 110 | return d->previewForDataRegion(d->currentSheet, d->currentRange, okToMatrix, lines); |
| 111 | #else |
| 112 | Q_UNUSED(lines) |
| 113 | Q_UNUSED(okToMatrix) |
| 114 | return {}; |
| 115 | #endif |
| 116 | } |
| 117 | |
| 118 | void XLSXFilter::setSheetToAppendTo(const QString& sheetName) { |
| 119 | d->sheetToAppendSpreadsheetTo = sheetName; |
nothing calls this directly
no test coverage detected