mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
DocFormatReader - дешифрование + поддержка формата 95 года
This commit is contained in:
@ -35,7 +35,8 @@
|
||||
|
||||
namespace DocFileFormat
|
||||
{
|
||||
TableCellPropertiesMapping::TableCellPropertiesMapping (XmlUtils::CXmlWriter* pWriter, const vector<short>* tableGrid, int gridIndex, int cellIndex) : PropertiesMapping(pWriter)
|
||||
TableCellPropertiesMapping::TableCellPropertiesMapping (XmlUtils::CXmlWriter* pWriter, const std::vector<short>* tableGrid, int gridIndex, int cellIndex) :
|
||||
PropertiesMapping(pWriter)
|
||||
{
|
||||
_width = 0;
|
||||
|
||||
@ -377,7 +378,7 @@ namespace DocFileFormat
|
||||
}
|
||||
}
|
||||
|
||||
bool TableCellPropertiesMapping::IsTableBordersDefined (const list<SinglePropertyModifier>* grpprl) const
|
||||
bool TableCellPropertiesMapping::IsTableBordersDefined (const std::list<SinglePropertyModifier>* grpprl) const
|
||||
{
|
||||
if (grpprl)
|
||||
{
|
||||
@ -392,7 +393,7 @@ namespace DocFileFormat
|
||||
return false;
|
||||
}
|
||||
|
||||
bool TableCellPropertiesMapping::IsTableCellWidthDefined (const list<SinglePropertyModifier>* grpprl) const
|
||||
bool TableCellPropertiesMapping::IsTableCellWidthDefined (const std::list<SinglePropertyModifier>* grpprl) const
|
||||
{
|
||||
if (grpprl)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user