summaryrefslogtreecommitdiff
path: root/sw/source/core/docnode/ndtbl1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/docnode/ndtbl1.cxx')
-rw-r--r--sw/source/core/docnode/ndtbl1.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/core/docnode/ndtbl1.cxx b/sw/source/core/docnode/ndtbl1.cxx
index f48472133f61..1a2026a70e7d 100644
--- a/sw/source/core/docnode/ndtbl1.cxx
+++ b/sw/source/core/docnode/ndtbl1.cxx
@@ -172,16 +172,16 @@ struct LinesAndTable
m_rLines(rL), m_rTable(rTable), m_bInsertLines(true) {}
};
-bool _FindLine( _FndLine & rLine, LinesAndTable* pPara );
+bool FindLine_( FndLine_ & rLine, LinesAndTable* pPara );
-bool _FindBox( _FndBox & rBox, LinesAndTable* pPara )
+bool FindBox_( FndBox_ & rBox, LinesAndTable* pPara )
{
if (!rBox.GetLines().empty())
{
pPara->m_bInsertLines = true;
for (auto const& rpFndLine : rBox.GetLines())
{
- _FindLine(*rpFndLine, pPara);
+ FindLine_(*rpFndLine, pPara);
}
if (pPara->m_bInsertLines)
@@ -205,11 +205,11 @@ bool _FindBox( _FndBox & rBox, LinesAndTable* pPara )
return true;
}
-bool _FindLine( _FndLine& rLine, LinesAndTable* pPara )
+bool FindLine_( FndLine_& rLine, LinesAndTable* pPara )
{
for (auto const& it : rLine.GetBoxes())
{
- _FindBox(*it, pPara);
+ FindBox_(*it, pPara);
}
return true;
}
@@ -224,14 +224,14 @@ static void lcl_CollectLines( std::vector<SwTableLine*> &rArr, const SwCursor& r
// Copy the selected structure
const SwTable &rTable = aBoxes[0]->GetSttNd()->FindTableNode()->GetTable();
LinesAndTable aPara( rArr, rTable );
- _FndBox aFndBox( nullptr, nullptr );
+ FndBox_ aFndBox( nullptr, nullptr );
{
- _FndPara aTmpPara( aBoxes, &aFndBox );
+ FndPara aTmpPara( aBoxes, &aFndBox );
ForEach_FndLineCopyCol( (SwTableLines&)rTable.GetTabLines(), &aTmpPara );
}
// Collect the Lines which only contain selected Boxes
- ::_FindBox(aFndBox, &aPara);
+ ::FindBox_(aFndBox, &aPara);
// Remove lines, that have a common superordinate row.
// (Not for row split)