Skip to content

Commit

Permalink
[xlsb] write iOutLevel to std::string
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMarvin committed Jan 9, 2025
1 parent 74f8301 commit f1c7d15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xlsb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2490,7 +2490,7 @@ int32_t worksheet_bin(std::string filePath, bool chartsheet, std::string outPath
if (fields->fBestFit)
out << " bestFit=\"" << fields->fBestFit << "\"";
if (fields->iOutLevel>0)
out << " outlineLevel=\"" << fields->iOutLevel << "\"";
out << " outlineLevel=\"" << (uint16_t)fields->iOutLevel << "\"";
if (fields->fCollapsed)
out << " collapsed=\"" << fields->fCollapsed << "\"";

Expand Down

0 comments on commit f1c7d15

Please sign in to comment.