Renamed worksheet_set_column() function.

Renamed worksheet_set_column() function to worksheet_set_column_opt()
for consistency with current and future APIs. The worksheet_set_column()
function is now used without the option.

This is a backward incompatible change.
This commit is contained in:
John McNamara 2016-01-04 00:01:00 +00:00
parent 51d97e7f41
commit 2c34defdf4
45 changed files with 130 additions and 100 deletions

View file

@ -21,7 +21,7 @@ int main() {
format_set_border(merge_format, LXW_BORDER_THIN);
/* Increase the cell size of the merged cells to highlight the formatting. */
worksheet_set_column(worksheet, 1, 3, 12, NULL, NULL);
worksheet_set_column(worksheet, 1, 3, 12, NULL);
worksheet_set_row(worksheet, 3, 30, NULL, NULL);
worksheet_set_row(worksheet, 6, 30, NULL, NULL);
worksheet_set_row(worksheet, 7, 30, NULL, NULL);