From 6ee27f54b193b03cc790f667d1c2e54e9abccc6f Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Fri, 27 Jan 2017 00:16:51 +0000 Subject: SC-IM is a spreadsheet program that is based on SC Some of the features of SC-IM * UNDO / REDO. * 65.536 rows and 702 columns supported. (The number of rows can be expanded to 1.048.576 if wished). * CSV / TAB delimited file import and export. * XLS / XLSX file import. * Key-mappings. * Sort of rows. * Filter of rows. * Cell shifting. * 256 color support - screen colors can be customized by user, even at runtime. * Colorize cells or give them format such as bold or underline. * Wide character support. The following alphabets are supported: English, Spanish, French, Italian, German, Portuguese, Russian, Ukrainian, Greek, Turkish, Czech, Japanese, Chinese. * Implement external functions in the language you prefer and use them in SC-IM * Use SC-IM as a non-interactive calculator, reading its input from a external script. * More movements commands implemented ! * Input and Output was completely rewritten WWW: https://github.com/andmarti1424/sc-im --- math/sc-im/files/patch-xls.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 math/sc-im/files/patch-xls.c (limited to 'math/sc-im/files/patch-xls.c') diff --git a/math/sc-im/files/patch-xls.c b/math/sc-im/files/patch-xls.c new file mode 100644 index 000000000000..599af12ec4c9 --- /dev/null +++ b/math/sc-im/files/patch-xls.c @@ -0,0 +1,11 @@ +--- xls.c.orig 2016-11-28 12:29:27 UTC ++++ xls.c +@@ -60,7 +60,7 @@ int open_xls(char * fname, char * encodi + for (c = 0; c <= pWS->rows.lastcol; c++) { // cols + xlsCell * cell = xls_cell(pWS, r, c); + //if ((! cell) || (cell->isHidden)) continue; +- if ((! cell) || (cell->ishiden)) continue; // Unfortunately libxls spells this "ishiden" ++ if ((! cell) || (cell->isHidden)) continue; // Unfortunately libxls spells this "ishiden" + + // TODO enable rowspan ? + //if (cell->rowspan > 1) continue; -- cgit v1.2.3