diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/doc.hxx | 12 | ||||
-rw-r--r-- | sw/inc/unochart.hxx | 2 | ||||
-rw-r--r-- | sw/qa/extras/ooxmlimport/ooxmlimport.cxx | 12 | ||||
-rw-r--r-- | sw/qa/extras/uiwriter/uiwriter.cxx | 10 | ||||
-rw-r--r-- | sw/source/core/doc/CntntIdxStore.cxx | 10 | ||||
-rw-r--r-- | sw/source/core/doc/doc.cxx | 6 | ||||
-rw-r--r-- | sw/source/core/doc/doccorr.cxx | 16 | ||||
-rw-r--r-- | sw/source/core/doc/docnew.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/frmedt/fews.cxx | 10 | ||||
-rw-r--r-- | sw/source/core/inc/txtfrm.hxx | 2 | ||||
-rw-r--r-- | sw/source/core/unocore/unochart.cxx | 12 | ||||
-rw-r--r-- | sw/source/filter/ww8/ww8atr.cxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/app/docsh.cxx | 2 |
13 files changed, 49 insertions, 49 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index b13679c5b73e..52eae86fc758 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -1641,17 +1641,17 @@ public: void dumpAsXml(struct _xmlTextWriter* = nullptr) const; std::set<Color> GetDocColors(); - std::vector< std::weak_ptr<SwUnoCrsr> > mvUnoCrsrTbl; + std::vector< std::weak_ptr<SwUnoCrsr> > mvUnoCrsrTable; // Remove expired UnoCrsr weak pointers the document keeps to notify about document death. - void cleanupUnoCrsrTbl() + void cleanupUnoCrsrTable() { // In most cases we'll remove most of the elements. - std::vector< std::weak_ptr<SwUnoCrsr> > unoCrsrTbl; - std::copy_if(mvUnoCrsrTbl.begin(), mvUnoCrsrTbl.end(), - std::back_inserter(unoCrsrTbl), + std::vector< std::weak_ptr<SwUnoCrsr> > unoCrsrTable; + std::copy_if(mvUnoCrsrTable.begin(), mvUnoCrsrTable.end(), + std::back_inserter(unoCrsrTable), [](const std::weak_ptr<SwUnoCrsr>& pWeakPtr) { return !pWeakPtr.expired(); }); - std::swap(mvUnoCrsrTbl, unoCrsrTbl); + std::swap(mvUnoCrsrTable, unoCrsrTable); } private: diff --git a/sw/inc/unochart.hxx b/sw/inc/unochart.hxx index 69adac560756..09cb4f613ed2 100644 --- a/sw/inc/unochart.hxx +++ b/sw/inc/unochart.hxx @@ -278,7 +278,7 @@ protected: public: SwChartDataSequence( SwChartDataProvider &rProvider, - SwFrameFormat &rTblFmt, + SwFrameFormat &rTableFormat, std::shared_ptr<SwUnoCrsr> pTableCursor ); virtual ~SwChartDataSequence(); diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx index c0232570a6b6..5138377e4079 100644 --- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx +++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx @@ -2887,12 +2887,12 @@ DECLARE_OOXMLIMPORT_TEST(testTdf91417, "tdf91417.docx") DECLARE_OOXMLIMPORT_TEST(testTdf90810, "tdf90810short.docx") { uno::Reference<text::XTextDocument> xTextDocument(mxComponent, uno::UNO_QUERY); - uno::Reference<text::XFootnotesSupplier> xFtnSupp(xTextDocument, uno::UNO_QUERY); - uno::Reference<container::XIndexAccess> xFtnIdxAcc(xFtnSupp->getFootnotes(), uno::UNO_QUERY); - uno::Reference<text::XFootnote> xFtn(xFtnIdxAcc->getByIndex(0), uno::UNO_QUERY); - uno::Reference<text::XText> xFtnText(xFtn, uno::UNO_QUERY); - rtl::OUString sFtnText = xFtnText->getString(); - CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(90), static_cast<sal_Int32>(sFtnText.getLength())); + uno::Reference<text::XFootnotesSupplier> xFootnoteSupp(xTextDocument, uno::UNO_QUERY); + uno::Reference<container::XIndexAccess> xFootnoteIdxAcc(xFootnoteSupp->getFootnotes(), uno::UNO_QUERY); + uno::Reference<text::XFootnote> xFootnote(xFootnoteIdxAcc->getByIndex(0), uno::UNO_QUERY); + uno::Reference<text::XText> xFootnoteText(xFootnote, uno::UNO_QUERY); + rtl::OUString sFootnoteText = xFootnoteText->getString(); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(90), static_cast<sal_Int32>(sFootnoteText.getLength())); } DECLARE_OOXMLIMPORT_TEST(testTdf89165, "tdf89165.docx") diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx b/sw/qa/extras/uiwriter/uiwriter.cxx index 3049531915de..aac00f04b0be 100644 --- a/sw/qa/extras/uiwriter/uiwriter.cxx +++ b/sw/qa/extras/uiwriter/uiwriter.cxx @@ -1171,17 +1171,17 @@ void SwUiWriterTest::testDeleteTableRedlines() SwDoc* pDoc = createDoc(); SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); SwInsertTableOptions TableOpt(tabopts::DEFAULT_BORDER, 0); - const SwTable& rTbl = pWrtShell->InsertTable(TableOpt, 1, 3); + const SwTable& rTable = pWrtShell->InsertTable(TableOpt, 1, 3); uno::Reference<text::XTextTable> xTable(getParagraphOrTable(1), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable->getRows()->getCount()); CPPUNIT_ASSERT_EQUAL(sal_Int32(3), xTable->getColumns()->getCount()); uno::Sequence<beans::PropertyValue> aDescriptor; - SwUnoCursorHelper::makeTableCellRedline((*const_cast<SwTableBox*>(rTbl.GetTableBox("A1"))), "TableCellInsert", aDescriptor); - SwUnoCursorHelper::makeTableCellRedline((*const_cast<SwTableBox*>(rTbl.GetTableBox("B1"))), "TableCellInsert", aDescriptor); - SwUnoCursorHelper::makeTableCellRedline((*const_cast<SwTableBox*>(rTbl.GetTableBox("C1"))), "TableCellInsert", aDescriptor); + SwUnoCursorHelper::makeTableCellRedline((*const_cast<SwTableBox*>(rTable.GetTableBox("A1"))), "TableCellInsert", aDescriptor); + SwUnoCursorHelper::makeTableCellRedline((*const_cast<SwTableBox*>(rTable.GetTableBox("B1"))), "TableCellInsert", aDescriptor); + SwUnoCursorHelper::makeTableCellRedline((*const_cast<SwTableBox*>(rTable.GetTableBox("C1"))), "TableCellInsert", aDescriptor); IDocumentRedlineAccess& rIDRA = pDoc->getIDocumentRedlineAccess(); SwExtraRedlineTable& rExtras = rIDRA.GetExtraRedlineTable(); - rExtras.DeleteAllTableRedlines(pDoc, rTbl, false, sal_uInt16(USHRT_MAX)); + rExtras.DeleteAllTableRedlines(pDoc, rTable, false, sal_uInt16(USHRT_MAX)); CPPUNIT_ASSERT(rExtras.IsEmpty()); } diff --git a/sw/source/core/doc/CntntIdxStore.cxx b/sw/source/core/doc/CntntIdxStore.cxx index c74b26441ddd..41b599f8396c 100644 --- a/sw/source/core/doc/CntntIdxStore.cxx +++ b/sw/source/core/doc/CntntIdxStore.cxx @@ -378,8 +378,8 @@ void ContentIdxStoreImpl::RestoreFlys(SwDoc* pDoc, updater_t& rUpdater, bool bAu void ContentIdxStoreImpl::SaveUnoCrsrs(SwDoc* pDoc, sal_uLong nNode, sal_Int32 nContent) { - pDoc->cleanupUnoCrsrTbl(); - for (const auto& pWeakUnoCrsr : pDoc->mvUnoCrsrTbl) + pDoc->cleanupUnoCrsrTable(); + for (const auto& pWeakUnoCrsr : pDoc->mvUnoCrsrTable) { auto pUnoCrsr(pWeakUnoCrsr.lock()); if(!pUnoCrsr) @@ -388,10 +388,10 @@ void ContentIdxStoreImpl::SaveUnoCrsrs(SwDoc* pDoc, sal_uLong nNode, sal_Int32 n { lcl_ChkPaMBoth( m_aUnoCrsrEntries, nNode, nContent, rPaM); } - const SwUnoTableCrsr* pUnoTblCrsr = dynamic_cast<const SwUnoTableCrsr*>(pUnoCrsr.get()); - if( pUnoTblCrsr ) + const SwUnoTableCrsr* pUnoTableCrsr = dynamic_cast<const SwUnoTableCrsr*>(pUnoCrsr.get()); + if( pUnoTableCrsr ) { - for(SwPaM& rPaM : (&(const_cast<SwUnoTableCrsr*>(pUnoTblCrsr))->GetSelRing())->GetRingContainer()) + for(SwPaM& rPaM : (&(const_cast<SwUnoTableCrsr*>(pUnoTableCrsr))->GetSelRing())->GetRingContainer()) { lcl_ChkPaMBoth( m_aUnoCrsrEntries, nNode, nContent, rPaM); } diff --git a/sw/source/core/doc/doc.cxx b/sw/source/core/doc/doc.cxx index 38631b1e68ea..27b2f4b39b37 100644 --- a/sw/source/core/doc/doc.cxx +++ b/sw/source/core/doc/doc.cxx @@ -1680,15 +1680,15 @@ bool SwDoc::ContainsHiddenChars() const return false; } -std::shared_ptr<SwUnoCrsr> SwDoc::CreateUnoCrsr( const SwPosition& rPos, bool bTblCrsr ) +std::shared_ptr<SwUnoCrsr> SwDoc::CreateUnoCrsr( const SwPosition& rPos, bool bTableCrsr ) { std::shared_ptr<SwUnoCrsr> pNew; - if( bTblCrsr ) + if( bTableCrsr ) pNew = std::make_shared<SwUnoTableCrsr>(rPos); else pNew = std::make_shared<SwUnoCrsr>(rPos); - mvUnoCrsrTbl.push_back( pNew ); + mvUnoCrsrTable.push_back( pNew ); return pNew; } diff --git a/sw/source/core/doc/doccorr.cxx b/sw/source/core/doc/doccorr.cxx index 62df0932e57d..278d7f2a4a6d 100644 --- a/sw/source/core/doc/doccorr.cxx +++ b/sw/source/core/doc/doccorr.cxx @@ -121,7 +121,7 @@ void PaMCorrAbs( const SwPaM& rRange, } } - for(const auto& pWeakUnoCrsr : pDoc->mvUnoCrsrTbl) + for(const auto& pWeakUnoCrsr : pDoc->mvUnoCrsrTable) { auto pUnoCursor(pWeakUnoCrsr.lock()); if(!pUnoCursor) @@ -142,11 +142,11 @@ void PaMCorrAbs( const SwPaM& rRange, bChange |= lcl_PaMCorrAbs( rPaM, aStart, aEnd, aNewPos ); } - SwUnoTableCrsr *const pUnoTblCrsr = + SwUnoTableCrsr *const pUnoTableCrsr = dynamic_cast<SwUnoTableCrsr *>(pUnoCursor.get()); - if( pUnoTblCrsr ) + if( pUnoTableCrsr ) { - for(SwPaM& rPaM : (&pUnoTblCrsr->GetSelRing())->GetRingContainer()) + for(SwPaM& rPaM : (&pUnoTableCrsr->GetSelRing())->GetRingContainer()) { bChange |= lcl_PaMCorrAbs( rPaM, aStart, aEnd, aNewPos ); @@ -274,7 +274,7 @@ void PaMCorrRel( const SwNodeIndex &rOldNode, } } - for(const auto& pWeakUnoCrsr : pDoc->mvUnoCrsrTbl) + for(const auto& pWeakUnoCrsr : pDoc->mvUnoCrsrTable) { auto pUnoCrsr(pWeakUnoCrsr.lock()); if(!pUnoCrsr) @@ -284,11 +284,11 @@ void PaMCorrRel( const SwNodeIndex &rOldNode, lcl_PaMCorrRel1( &rPaM, pOldNode, aNewPos, nCntIdx ); } - SwUnoTableCrsr* pUnoTblCrsr = + SwUnoTableCrsr* pUnoTableCrsr = dynamic_cast<SwUnoTableCrsr*>(pUnoCrsr.get()); - if( pUnoTblCrsr ) + if( pUnoTableCrsr ) { - for(SwPaM& rPaM : (&pUnoTblCrsr->GetSelRing())->GetRingContainer()) + for(SwPaM& rPaM : (&pUnoTableCrsr->GetSelRing())->GetRingContainer()) { lcl_PaMCorrRel1( &rPaM, pOldNode, aNewPos, nCntIdx ); } diff --git a/sw/source/core/doc/docnew.cxx b/sw/source/core/doc/docnew.cxx index 72aa885258d8..36d513aab0a4 100644 --- a/sw/source/core/doc/docnew.cxx +++ b/sw/source/core/doc/docnew.cxx @@ -426,7 +426,7 @@ SwDoc::~SwDoc() getIDocumentRedlineAccess().GetExtraRedlineTable().DeleteAndDestroyAll(); const sw::DocDisposingHint aHint; - for(const auto& pWeakCursor : mvUnoCrsrTbl) + for(const auto& pWeakCursor : mvUnoCrsrTable) { auto pCursor(pWeakCursor.lock()); if(pCursor) diff --git a/sw/source/core/frmedt/fews.cxx b/sw/source/core/frmedt/fews.cxx index a5c04992d31e..5c39c10f4d68 100644 --- a/sw/source/core/frmedt/fews.cxx +++ b/sw/source/core/frmedt/fews.cxx @@ -477,11 +477,11 @@ void SwFEShell::InsertLabel( const SwLabelType eType, const OUString &rText, con if (pFlyFormat && bInnerCntIsFly) { SwNodeIndex aAnchIdx(*pFlyFormat->GetContent().GetContentIdx(), 1); - SwTextNode *pTxtNode = aAnchIdx.GetNode().GetTextNode(); + SwTextNode *pTextNode = aAnchIdx.GetNode().GetTextNode(); SwFormatAnchor aAnc(FLY_AS_CHAR); - sal_Int32 nInsertPos = bBefore ? pTxtNode->Len() : 0; - SwPosition aPos(*pTxtNode, nInsertPos); + sal_Int32 nInsertPos = bBefore ? pTextNode->Len() : 0; + SwPosition aPos(*pTextNode, nInsertPos); aAnc.SetAnchor(&aPos); @@ -493,8 +493,8 @@ void SwFEShell::InsertLabel( const SwLabelType eType, const OUString &rText, con //put a hard-break after the graphic to keep it separated //from the caption text if the outer frame is resized - SwIndex aIdx(pTxtNode, bBefore ? nInsertPos : 1); - pTxtNode->InsertText("\n", aIdx); + SwIndex aIdx(pTextNode, bBefore ? nInsertPos : 1); + pTextNode->InsertText("\n", aIdx); } } diff --git a/sw/source/core/inc/txtfrm.hxx b/sw/source/core/inc/txtfrm.hxx index 79b4d78a8a17..b20d2d3d18ba 100644 --- a/sw/source/core/inc/txtfrm.hxx +++ b/sw/source/core/inc/txtfrm.hxx @@ -334,7 +334,7 @@ public: * If the void* casts wrongly, it's its own fault! * The void* must be checked for 0 in any case! * - * return true if the Portion associated with this SwTxtFrm was + * return true if the Portion associated with this SwTextFrm was * potentially destroyed and replaced by Prepare */ virtual bool Prepare( const PrepareHint ePrep = PREP_CLEAR, diff --git a/sw/source/core/unocore/unochart.cxx b/sw/source/core/unocore/unochart.cxx index a97ba36b7f45..f4d317c7dd32 100644 --- a/sw/source/core/unocore/unochart.cxx +++ b/sw/source/core/unocore/unochart.cxx @@ -366,7 +366,7 @@ static void GetTableByName( const SwDoc &rDoc, const OUString &rTableName, static void GetFormatAndCreateCursorFromRangeRep( const SwDoc *pDoc, const OUString &rRangeRepresentation, // must be a single range (i.e. so called sub-range) - SwFrameFormat **ppTblFmt, // will be set to the table format of the table used in the range representation + SwFrameFormat **ppTableFormat, // will be set to the table format of the table used in the range representation std::shared_ptr<SwUnoCrsr>& rpUnoCrsr ) // will be set to cursor spanning the cell range (cursor will be created!) { OUString aTableName; // table name @@ -377,8 +377,8 @@ static void GetFormatAndCreateCursorFromRangeRep( if (!bNamesFound) { - if (ppTblFmt) - *ppTblFmt = nullptr; + if (ppTableFormat) + *ppTableFormat = nullptr; rpUnoCrsr.reset(); } else @@ -386,12 +386,12 @@ static void GetFormatAndCreateCursorFromRangeRep( SwFrameFormat *pTableFormat = nullptr; // is the correct table format already provided? - if (*ppTblFmt != nullptr && (*ppTblFmt)->GetName() == aTableName) - pTableFormat = *ppTblFmt; + if (*ppTableFormat != nullptr && (*ppTableFormat)->GetName() == aTableName) + pTableFormat = *ppTableFormat; else GetTableByName( *pDoc, aTableName, &pTableFormat, nullptr ); - *ppTblFmt = pTableFormat; + *ppTableFormat = pTableFormat; rpUnoCrsr.reset(); // default result in case of failure diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx index 86061fc579d9..112a125e4c7f 100644 --- a/sw/source/filter/ww8/ww8atr.cxx +++ b/sw/source/filter/ww8/ww8atr.cxx @@ -3272,7 +3272,7 @@ void AttributeOutputBase::ParaNumRule( const SwNumRuleItem& rNumRule ) } } -void WW8AttributeOutput::ParaNumRule_Impl(const SwTextNode* /*pTxtNd*/, +void WW8AttributeOutput::ParaNumRule_Impl(const SwTextNode* /*pTextNd*/, sal_Int32 const nLvl, sal_Int32 const nNumId) { // write sprmPIlvl and sprmPIlfo diff --git a/sw/source/uibase/app/docsh.cxx b/sw/source/uibase/app/docsh.cxx index a412f5a921a4..4f3d186d473b 100644 --- a/sw/source/uibase/app/docsh.cxx +++ b/sw/source/uibase/app/docsh.cxx @@ -516,7 +516,7 @@ bool SwDocShell::SaveAs( SfxMedium& rMedium ) // Increase RSID m_pDoc->setRsid( m_pDoc->getRsid() ); - m_pDoc->cleanupUnoCrsrTbl(); + m_pDoc->cleanupUnoCrsrTable(); } SetError( nErr ? nErr : nVBWarning, OSL_LOG_PREFIX ); |