diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-31 19:29:31 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 12:29:39 +0200 |
commit | ee8f0a10661b747db9a82b9acba4de343a5a51d6 (patch) | |
tree | ce9b6b2cf18caa73b8500245d558ff2ac484074d /sw/source | |
parent | 0940229305247b4e64e8c85c9734020c9808a6ec (diff) |
Fix '..'
To complete this:
https://gerrit.libreoffice.org/#/c/78312/
This is a massive replace for
".." instead of "..." between words.
It passed "make check" on Linux.
Change-Id: I144d8061fca9f545c762941551e59dffdd3650e8
Reviewed-on: https://gerrit.libreoffice.org/78357
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/inc/UndoSplitMove.hxx | 6 | ||||
-rw-r--r-- | sw/source/core/layout/calcmove.cxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/wrtw8esh.cxx | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/inc/UndoSplitMove.hxx b/sw/source/core/inc/UndoSplitMove.hxx index a21b249b2509..44ef64ccdd9d 100644 --- a/sw/source/core/inc/UndoSplitMove.hxx +++ b/sw/source/core/inc/UndoSplitMove.hxx @@ -46,9 +46,9 @@ public: class SwUndoMove : public SwUndo, private SwUndRng, private SwUndoSaveContent { - // nDest.. - destination range of move (after move!) - // nIns.. - source Position of move (after move!) - // nMv.. - destination position of move (before move!); for REDO + // nDest... - destination range of move (after move!) + // nIns... - source Position of move (after move!) + // nMv... - destination position of move (before move!); for REDO sal_uLong m_nDestStartNode, m_nDestEndNode, m_nInsPosNode, m_nMoveDestNode; sal_Int32 m_nDestStartContent, m_nDestEndContent, m_nInsPosContent, m_nMoveDestContent; diff --git a/sw/source/core/layout/calcmove.cxx b/sw/source/core/layout/calcmove.cxx index cb956d8f916c..a986773f422a 100644 --- a/sw/source/core/layout/calcmove.cxx +++ b/sw/source/core/layout/calcmove.cxx @@ -1986,7 +1986,7 @@ static bool lcl_IsNextFootnoteBoss( const SwFrame *pFrame, const SwFrame* pNxt ) // If pNxt is a first column, we use the page instead. while( pNxt && pNxt->IsColumnFrame() && !pNxt->GetPrev() ) pNxt = pNxt->GetUpper()->FindFootnoteBossFrame(); - // So.. now pFrame and pNxt are either two adjacent pages or columns. + // So... now pFrame and pNxt are either two adjacent pages or columns. return pFrame && pNxt && pFrame->GetNext() == pNxt; } diff --git a/sw/source/filter/ww8/wrtw8esh.cxx b/sw/source/filter/ww8/wrtw8esh.cxx index de3527796373..af8baa78b3cc 100644 --- a/sw/source/filter/ww8/wrtw8esh.cxx +++ b/sw/source/filter/ww8/wrtw8esh.cxx @@ -3015,7 +3015,7 @@ SwMSConvertControls::SwMSConvertControls( SfxObjectShell const *pDSh, SwPaM *pP // in transitioning away old filter for ole/ocx controls, ReadOCXStream has been made pure virtual in -// filter/source/msocximex.cxx, so.. we need an implementation here +// filter/source/msocximex.cxx, so... we need an implementation here bool SwMSConvertControls::ReadOCXStream( tools::SvRef<SotStorage> const & rSrc1, css::uno::Reference< css::drawing::XShape > *pShapeRef, bool bFloatingCtrl ) |