mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
fix bug #74484
This commit is contained in:
@ -356,7 +356,8 @@ std::wstring xlsx_table_state::default_column_cell_style() const
|
||||
|
||||
void xlsx_table_state::end_row()
|
||||
{
|
||||
table_row_style_ = L"";
|
||||
in_cell = false;
|
||||
table_row_style_ = L"";
|
||||
}
|
||||
|
||||
std::wstring xlsx_table_state::current_row_style() const
|
||||
|
||||
@ -1033,7 +1033,11 @@ void table_table_cell::xlsx_convert(oox::xlsx_conversion_context & Context)
|
||||
xlsx_value_type = oox::XlsxCellType::s;//в случае текста, если он есть берем кэшированное значение
|
||||
}
|
||||
//---------------------------------------------------------------------------------------------------------
|
||||
if (skip_next_cell) break;
|
||||
if (skip_next_cell)
|
||||
{
|
||||
Context.end_table_cell();
|
||||
break;
|
||||
}
|
||||
|
||||
// пустые ячейки пропускаем.
|
||||
if ( is_data_visible || ((cellStyle || defaultColumnCellStyle) && is_style_visible))
|
||||
|
||||
Reference in New Issue
Block a user