fix/bug-with-break-columns

update comments
This commit is contained in:
Timofey Derevyankin
2025-08-18 13:31:19 +03:00
parent 247b90ce1a
commit 1969229659

View File

@ -166,12 +166,12 @@ docx_conversion_context::~docx_conversion_context()
{
}
void docx_conversion_context::set_implicit_end( bool _flag ) // сеттер для флага в одном файле ( где 5й параграф создается )
void docx_conversion_context::set_implicit_end( bool _flag ) // fix bug with convert from docx to odt with break columns
{
flag_implicit_end = _flag;
}
bool docx_conversion_context::get_implicit_end() const // геттер для флага в другом файле ( где после создания 5го параграфа _is_dump = true )
bool docx_conversion_context::get_implicit_end() const // fix bug with convert from docx to odt with break columns
{
return flag_implicit_end;
}