summaryrefslogtreecommitdiffstats
path: root/src/xlsx.c
diff options
context:
space:
mode:
authorandmarti1424 <andmarti@gmail.com>2017-04-03 22:16:10 -0300
committerandmarti1424 <andmarti@gmail.com>2017-04-03 22:16:10 -0300
commit6e227c6b9b362260c223967a2402ec5ca214c18e (patch)
tree504b3baef6b23df2793043eb6ce8fbdedfc269ed /src/xlsx.c
parentd3859b4412b0e0f590c69fc1cb242b30a9553cab (diff)
call int_deleterow instead of deleterow
Diffstat (limited to 'src/xlsx.c')
-rw-r--r--src/xlsx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xlsx.c b/src/xlsx.c
index f5fc4b4..e0efc19 100644
--- a/src/xlsx.c
+++ b/src/xlsx.c
@@ -562,7 +562,7 @@ int export_xlsx(char * filename, int r0, int c0, int rn, int cn) {
}
/* TODO: handle hidden rows and columns? */
}
- deleterow(currow, 1); /* delete the added row */
+ int_deleterow(currow, 1); /* delete the added row */
currow = bkp_currow;
return workbook_close(workbook);