mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Fix col width size in 32bit builds.
This commit is contained in:
parent
8c37848647
commit
c4d68e5d92
1
.gitignore
vendored
1
.gitignore
vendored
@ -26,6 +26,7 @@ TAGS
|
||||
.settings/
|
||||
.DS_Store
|
||||
__pycache__
|
||||
.cache
|
||||
docs/html
|
||||
docs/latex
|
||||
.deps
|
||||
|
@ -67,10 +67,10 @@
|
||||
#define LXW_BREAKS_MAX 1023
|
||||
|
||||
/** Default column width in Excel */
|
||||
#define LXW_DEF_COL_WIDTH 8.43
|
||||
#define LXW_DEF_COL_WIDTH (double)8.43
|
||||
|
||||
/** Default row height in Excel */
|
||||
#define LXW_DEF_ROW_HEIGHT 15.0
|
||||
#define LXW_DEF_ROW_HEIGHT (double)15.0
|
||||
|
||||
/** Gridline options using in `worksheet_gridlines()`. */
|
||||
enum lxw_gridlines {
|
||||
|
Loading…
x
Reference in New Issue
Block a user