sw/source/filter/ww8/docxattributeoutput.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
New commits: commit 677484ce014df4b76dbd24526ea5c74f6bd044d5 Author: Caolán McNamara <caol...@redhat.com> Date: Mon May 25 10:42:09 2015 +0100 Var starts with r but is not reference Change-Id: I3458b4d8f4f28d38a1b1a979544412d1e526dec4 diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 7ee225c..3694f3f 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -2871,9 +2871,9 @@ void DocxAttributeOutput::TableCellProperties( ww8::WW8TableNodeInfoInner::Point FSEND ); // Horizontal spans - const SwWriteTableRows& aRows = m_xTableWrt->GetRows( ); - SwWriteTableRow *pRow = aRows[ nRow ]; - const SwWriteTableCells rTableCells = pRow->GetCells(); + const SwWriteTableRows& rRows = m_xTableWrt->GetRows( ); + SwWriteTableRow *pRow = rRows[ nRow ]; + const SwWriteTableCells& rTableCells = pRow->GetCells(); if (nCell < rTableCells.size() ) { const SwWriteTableCell& rCell = rTableCells[nCell]; @@ -3622,8 +3622,8 @@ void DocxAttributeOutput::TableVerticalCell( ww8::WW8TableNodeInfoInner::Pointer } } - const SwWriteTableRows& aRows = m_xTableWrt->GetRows( ); - SwWriteTableRow *pRow = aRows[ pTableTextNodeInfoInner->getRow( ) ]; + const SwWriteTableRows& rRows = m_xTableWrt->GetRows( ); + SwWriteTableRow *pRow = rRows[ pTableTextNodeInfoInner->getRow( ) ]; sal_uInt32 nCell = pTableTextNodeInfoInner->getCell(); const SwWriteTableCells& rTableCells = pRow->GetCells(); if (nCell < rTableCells.size() )
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits