Minor refactoring to fix type differences.

This commit is contained in:
John McNamara 2021-06-09 15:00:47 +01:00
parent 814634e2e9
commit 19e48ba61c
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ typedef struct lxw_chartsheet {
char *name;
char *quoted_name;
char *tmpdir;
uint32_t index;
uint16_t index;
uint8_t active;
uint8_t selected;
uint8_t hidden;

View File

@ -1797,7 +1797,7 @@ typedef struct lxw_worksheet {
* Worksheet initialization data.
*/
typedef struct lxw_worksheet_init_data {
uint32_t index;
uint16_t index;
uint8_t hidden;
uint8_t optimize;
uint16_t *active_sheet;