Commit d5026d01 authored by ElenaSubbotina's avatar ElenaSubbotina

.

parent 623fe254
...@@ -110,7 +110,7 @@ namespace utils { ...@@ -110,7 +110,7 @@ namespace utils {
{ {
if (!a_.empty()) if (!a_.empty())
{ {
return boost::lexical_cast<int>(a_.length())-1; return boost::lexical_cast<int>(a_) - 1;
} }
else else
return 0; return 0;
......
...@@ -1763,7 +1763,11 @@ void XlsxConverter::convert(OOX::Spreadsheet::CCellAnchor *oox_anchor) ...@@ -1763,7 +1763,11 @@ void XlsxConverter::convert(OOX::Spreadsheet::CCellAnchor *oox_anchor)
else if (oox_anchor->m_oGroupShape.IsInit()) else if (oox_anchor->m_oGroupShape.IsInit())
{ {
convert(oox_anchor->m_oGroupShape.GetPointer()); convert(oox_anchor->m_oGroupShape.GetPointer());
} }
else if (oox_anchor->m_oGraphicFrame.IsInit())
{
OoxConverter::convert(oox_anchor->m_oGraphicFrame.GetPointer());
}
} }
void XlsxConverter::convert(OOX::Spreadsheet::CDrawing *oox_drawing) void XlsxConverter::convert(OOX::Spreadsheet::CDrawing *oox_drawing)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment