diff options
author | Philipp Riemer <ruderphilipp@gmail.com> | 2013-09-26 11:08:37 +0200 |
---|---|---|
committer | Philipp Riemer <ruderphilipp@gmail.com> | 2013-09-26 11:24:47 +0200 |
commit | ba665a9957955e8306aa5554d8ce59b56751ea02 (patch) | |
tree | 6fdcac5e994e0749b2e3879f6919a6c8a0820817 | |
parent | 1043e4cb3ae68d5684d5725bd743097890ff7eb3 (diff) |
fdo#62475: remove visual noise
Change-Id: I287eeb68ee23931f0592190bad47a86cb4b8efac
-rw-r--r-- | sw/source/core/text/porfly.cxx | 20 | ||||
-rw-r--r-- | sw/source/core/unocore/unotbl.cxx | 27 |
2 files changed, 9 insertions, 38 deletions
diff --git a/sw/source/core/text/porfly.cxx b/sw/source/core/text/porfly.cxx index 1d8b01702308..a713057c451b 100644 --- a/sw/source/core/text/porfly.cxx +++ b/sw/source/core/text/porfly.cxx @@ -47,9 +47,6 @@ void SwFlyPortion::Paint( const SwTxtPaintInfo& ) const { } -/************************************************************************* - * virtual SwFlyPortion::Format() - *************************************************************************/ sal_Bool SwFlyPortion::Format( SwTxtFormatInfo &rInf ) { OSL_ENSURE( Fix() >= rInf.X(), "SwFlyPortion::Format" ); @@ -95,9 +92,6 @@ sal_Bool SwFlyPortion::Format( SwTxtFormatInfo &rInf ) return sal_False; } -/************************************************************************* - * virtual SwFlyCntPortion::Format() - *************************************************************************/ sal_Bool SwFlyCntPortion::Format( SwTxtFormatInfo &rInf ) { sal_Bool bFull = rInf.Width() < rInf.X() + PrtWidth(); @@ -184,9 +178,6 @@ void SwTxtFrm::MoveFlyInCnt( SwTxtFrm *pNew, xub_StrLen nStart, xub_StrLen nEnd } } -/************************************************************************* - * SwTxtFrm::CalcFlyPos() - *************************************************************************/ xub_StrLen SwTxtFrm::CalcFlyPos( SwFrmFmt* pSearch ) { SwpHints* pHints = GetTxtNode()->GetpSwpHints(); @@ -210,9 +201,6 @@ xub_StrLen SwTxtFrm::CalcFlyPos( SwFrmFmt* pSearch ) return *pFound->GetStart(); } -/************************************************************************* - * virtual SwFlyCntPortion::Paint() - *************************************************************************/ void SwFlyCntPortion::Paint( const SwTxtPaintInfo &rInf ) const { if( bDraw ) @@ -395,10 +383,6 @@ void SwFlyCntPortion::SetBase( const SwTxtFrm& rFrm, const Point &rBase, } } -/************************************************************************* - * virtual SwFlyCntPortion::GetFlyCrsrOfst() - *************************************************************************/ - xub_StrLen SwFlyCntPortion::GetFlyCrsrOfst( const KSHORT nOfst, const Point &rPoint, SwPosition *pPos, SwCrsrMoveState* pCMS ) const { @@ -413,10 +397,6 @@ xub_StrLen SwFlyCntPortion::GetFlyCrsrOfst( const KSHORT nOfst, return 0; } -/************************************************************************* - * virtual SwFlyCntPortion::GetCrsrOfst() - *************************************************************************/ - xub_StrLen SwFlyCntPortion::GetCrsrOfst( const KSHORT nOfst ) const { // OSL_ENSURE( !this, "SwFlyCntPortion::GetCrsrOfst: use GetFlyCrsrOfst()" ); diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx index 4116db6fb983..ee3985fafe7f 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -752,9 +752,6 @@ void sw_setValue( SwXCell &rCell, double nVal ) } } -/****************************************************************** - * SwXCell - ******************************************************************/ TYPEINIT1(SwXCell, SwClient); SwXCell::SwXCell(SwFrmFmt* pTblFmt, SwTableBox* pBx, size_t const nPos) : @@ -1291,9 +1288,6 @@ uno::Sequence< OUString > SwXCell::getSupportedServiceNames(void) throw( uno::Ru return aRet; } -/****************************************************************** - * SwXTextTableRow - ******************************************************************/ OUString SwXTextTableRow::getImplementationName(void) throw( uno::RuntimeException ) { return OUString("SwXTextTableRow"); @@ -1478,9 +1472,8 @@ SwTableLine* SwXTextTableRow::FindLine(SwTable* pTable, SwTableLine* pLine) return pRet; } -/****************************************************************** - * SwXTextTableCursor - ******************************************************************/ +// SwXTextTableCursor + OUString SwXTextTableCursor::getImplementationName(void) throw( uno::RuntimeException ) { return OUString("SwXTextTableCursor"); @@ -1901,9 +1894,7 @@ void SwXTextTableCursor::Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNe ClientModify(this, pOld, pNew); } -/****************************************************************** - * SwXTextTable - ******************************************************************/ +// SwXTextTable class SwXTextTable::Impl { @@ -1916,6 +1907,8 @@ public: Impl() : m_Listeners(m_Mutex) { } }; +// SwTableProperties_Impl + class SwTableProperties_Impl { SwUnoCursorHelper::SwAnyMapHelper aAnyMap; @@ -4641,9 +4634,8 @@ void SwXCellRange::Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) } } -/****************************************************************** - * SwXTableRows - ******************************************************************/ +// SwXTableRows + OUString SwXTableRows::getImplementationName(void) throw( uno::RuntimeException ) { return OUString("SwXTableRows"); @@ -4857,9 +4849,8 @@ void SwXTableRows::Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) ClientModify(this, pOld, pNew); } -/****************************************************************** - * SwXTableColumns - ******************************************************************/ +// SwXTableColumns + OUString SwXTableColumns::getImplementationName(void) throw( uno::RuntimeException ) { return OUString("SwXTableColumns"); |