Kaydet (Commit) baf7d49f authored tarafından Markus Mohrhard's avatar Markus Mohrhard Kaydeden (comit) Andras Timar

related tdf#117816, the dxf ID is a global and not a sheet property

Change-Id: I4c5ca66ce550de74d8b9396aa0213c558b7f884f
Reviewed-on: https://gerrit.libreoffice.org/57445
Tested-by: Jenkins
Reviewed-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
(cherry picked from commit 0f0466c6)
Reviewed-on: https://gerrit.libreoffice.org/72008Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
Tested-by: 's avatarAndras Timar <andras.timar@collabora.com>
üst 569c2229
...@@ -2983,12 +2983,12 @@ XclExpDxfs::XclExpDxfs( const XclExpRoot& rRoot ) ...@@ -2983,12 +2983,12 @@ XclExpDxfs::XclExpDxfs( const XclExpRoot& rRoot )
mxFormatter->FillKeywordTableForExcel( *mpKeywordTable ); mxFormatter->FillKeywordTableForExcel( *mpKeywordTable );
SCTAB nTables = rRoot.GetDoc().GetTableCount(); SCTAB nTables = rRoot.GetDoc().GetTableCount();
sal_Int32 nIndex = 0;
for(SCTAB nTab = 0; nTab < nTables; ++nTab) for(SCTAB nTab = 0; nTab < nTables; ++nTab)
{ {
ScConditionalFormatList* pList = rRoot.GetDoc().GetCondFormList(nTab); ScConditionalFormatList* pList = rRoot.GetDoc().GetCondFormList(nTab);
if (pList) if (pList)
{ {
sal_Int32 nIndex = 0;
for (ScConditionalFormatList::const_iterator itr = pList->begin(); for (ScConditionalFormatList::const_iterator itr = pList->begin();
itr != pList->end(); ++itr) itr != pList->end(); ++itr)
{ {
......
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