From f5bd3d3ff927d42f591b6e5a10d9e2cece1bad12 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Mon, 10 Nov 2008 15:06:12 +0000 Subject: CWS-TOOLING: integrate CWS cmcfixes50 2008-11-10 13:31:50 +0100 cmc r263517 : gio doesn't do anything useful for remote stuff wrt info 2008-11-06 00:11:47 +0100 cmc r263359 : #i93436# pile of other 64bit new gcc warnings 2008-11-05 00:39:03 +0100 cmc r263340 : i95856 let a ppc64 vanilla build succeed 2008-11-04 14:00:25 +0100 cmc r263320 : #i93436# useless const 2008-11-04 11:53:10 +0100 cmc r263314 : #i93436# ambiguous 2008-11-04 11:48:05 +0100 cmc r263313 : #i93436# add some braces 2008-11-04 11:29:24 +0100 cmc r263312 : #i93436# ambiguous 2008-11-04 10:53:46 +0100 cmc r263311 : --- sw/source/core/unocore/unodraw.cxx | 18 ++++----- sw/source/core/unocore/unofield.cxx | 18 ++++----- sw/source/core/unocore/unoframe.cxx | 22 +++++------ sw/source/core/unocore/unoftn.cxx | 6 +-- sw/source/core/unocore/unoidx.cxx | 18 ++++----- sw/source/core/unocore/unomap.cxx | 2 +- sw/source/core/unocore/unoobj.cxx | 10 ++--- sw/source/core/unocore/unoobj2.cxx | 18 ++++----- sw/source/core/unocore/unoparagraph.cxx | 10 ++--- sw/source/core/unocore/unoport.cxx | 10 ++--- sw/source/core/unocore/unoportenum.cxx | 10 ++--- sw/source/core/unocore/unoredline.cxx | 14 +++---- sw/source/core/unocore/unoredlines.cxx | 4 +- sw/source/core/unocore/unosect.cxx | 14 +++---- sw/source/core/unocore/unosett.cxx | 24 ++++++------ sw/source/core/unocore/unosrch.cxx | 8 ++-- sw/source/core/unocore/unostyle.cxx | 18 ++++----- sw/source/core/unocore/unotbl.cxx | 66 ++++++++++++++++----------------- sw/source/core/unocore/unotext.cxx | 10 ++--- 19 files changed, 150 insertions(+), 150 deletions(-) (limited to 'sw/source/core/unocore') diff --git a/sw/source/core/unocore/unodraw.cxx b/sw/source/core/unocore/unodraw.cxx index d4a82a9d7ef6..1b8d883f36a9 100644 --- a/sw/source/core/unocore/unodraw.cxx +++ b/sw/source/core/unocore/unodraw.cxx @@ -608,7 +608,7 @@ void SwXDrawPage::add(const uno::Reference< drawing::XShape > & xShape) uno::Reference< uno::XAggregation > xAgg = pShape->GetAggregationInterface(); - DBG_ASSERT(pSvxShape, "warum gibt es hier kein SvxShape?") + DBG_ASSERT(pSvxShape, "warum gibt es hier kein SvxShape?"); //diese Position ist auf jeden Fall in 1/100 mm awt::Point aMM100Pos(pSvxShape->getPosition()); @@ -1127,7 +1127,7 @@ void SwXShape::setPropertyValue(const rtl::OUString& rPropertyName, const uno::A else if(RES_OPAQUE == pMap->nWID) { SvxShape* pSvxShape = GetSvxShape(); - DBG_ASSERT(pSvxShape, "No SvxShape found!") + DBG_ASSERT(pSvxShape, "No SvxShape found!"); if(pSvxShape) { SdrObject* pObj = pSvxShape->GetSdrObject(); @@ -1448,7 +1448,7 @@ uno::Any SwXShape::getPropertyValue(const rtl::OUString& rPropertyName) if(RES_OPAQUE == pMap->nWID) { SvxShape* pSvxShape = GetSvxShape(); - DBG_ASSERT(pSvxShape, "No SvxShape found!") + DBG_ASSERT(pSvxShape, "No SvxShape found!"); if(pSvxShape) { SdrObject* pObj = pSvxShape->GetSdrObject(); @@ -1462,7 +1462,7 @@ uno::Any SwXShape::getPropertyValue(const rtl::OUString& rPropertyName) else if(FN_ANCHOR_POSITION == pMap->nWID) { SvxShape* pSvxShape = GetSvxShape(); - DBG_ASSERT(pSvxShape, "No SvxShape found!") + DBG_ASSERT(pSvxShape, "No SvxShape found!"); if(pSvxShape) { SdrObject* pObj = pSvxShape->GetSdrObject(); @@ -1906,7 +1906,7 @@ void SwXShape::addPropertyChangeListener( throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 22.01.99 11:42:27--------------------------------------------------- @@ -1917,7 +1917,7 @@ void SwXShape::removePropertyChangeListener( throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 22.01.99 11:42:28--------------------------------------------------- @@ -1928,7 +1928,7 @@ void SwXShape::addVetoableChangeListener( throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 22.01.99 11:42:28--------------------------------------------------- @@ -1939,7 +1939,7 @@ void SwXShape::removeVetoableChangeListener( throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 22.01.99 11:42:28--------------------------------------------------- @@ -2728,7 +2728,7 @@ SwXGroupShape::SwXGroupShape(uno::Reference< XInterface > & xShape) : { #ifdef DBG_UTIL uno::Reference xShapes(xShapeAgg, uno::UNO_QUERY); - DBG_ASSERT(xShapes.is(), "no SvxShape found or shape is not a group shape") + DBG_ASSERT(xShapes.is(), "no SvxShape found or shape is not a group shape"); #endif } diff --git a/sw/source/core/unocore/unofield.cxx b/sw/source/core/unocore/unofield.cxx index bcc240c01cf9..96aa8a01f5d0 100644 --- a/sw/source/core/unocore/unofield.cxx +++ b/sw/source/core/unocore/unofield.cxx @@ -925,28 +925,28 @@ uno::Any SwXFieldMaster::getPropertyValue(const OUString& rPropertyName) -----------------------------------------------------------------------*/ void SwXFieldMaster::addPropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 11:08:36--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXFieldMaster::removePropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 11:08:37--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXFieldMaster::addVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 11:08:37--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXFieldMaster::removeVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 25.02.99 11:01:57--------------------------------------------------- @@ -1969,7 +1969,7 @@ void SwXTextField::setPropertyValue(const OUString& rPropertyName, const uno::An { // hier muss ein neuer Feldtyp angelegt werden und // das Feld an den neuen Typ umgehaengt werden - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } else { @@ -2283,28 +2283,28 @@ uno::Any SwXTextField::getPropertyValue(const OUString& rPropertyName) -----------------------------------------------------------------------*/ void SwXTextField::addPropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 11:37:20--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextField::removePropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 11:37:20--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextField::addVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 11:37:20--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextField::removeVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /* -----------------------------23.03.01 13:15-------------------------------- diff --git a/sw/source/core/unocore/unoframe.cxx b/sw/source/core/unocore/unoframe.cxx index f7e4b9b58792..12d81b313cd8 100644 --- a/sw/source/core/unocore/unoframe.cxx +++ b/sw/source/core/unocore/unoframe.cxx @@ -1632,7 +1632,7 @@ uno::Any SwXFrame::getPropertyValue(const OUString& rPropertyName) const SwFmtCntnt* pCnt = &pFmt->GetCntnt(); DBG_ASSERT( pCnt->GetCntntIdx() && pDoc->GetNodes()[ pCnt->GetCntntIdx()-> - GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?") + GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?"); SwOLENode* pOleNode = pDoc->GetNodes()[ pCnt->GetCntntIdx() ->GetIndex() + 1 ]->GetOLENode(); @@ -1710,7 +1710,7 @@ void SwXFrame::addPropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 15:05:05--------------------------------------------------- @@ -1719,7 +1719,7 @@ void SwXFrame::removePropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 15:05:05--------------------------------------------------- @@ -1728,7 +1728,7 @@ void SwXFrame::addVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 15:05:05--------------------------------------------------- @@ -1737,7 +1737,7 @@ void SwXFrame::removeVetoableChangeListener( const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 12.09.00 14:04:53--------------------------------------------------- @@ -3091,7 +3091,7 @@ uno::Reference< lang::XComponent > SwXTextEmbeddedObject::getEmbeddedObject(voi const SwFmtCntnt* pCnt = &pFmt->GetCntnt(); DBG_ASSERT( pCnt->GetCntntIdx() && pDoc->GetNodes()[ pCnt->GetCntntIdx()-> - GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?") + GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?"); SwOLENode* pOleNode = pDoc->GetNodes()[ pCnt->GetCntntIdx() ->GetIndex() + 1 ]->GetOLENode(); @@ -3138,7 +3138,7 @@ uno::Reference< embed::XEmbeddedObject > SAL_CALL SwXTextEmbeddedObject::getExte const SwFmtCntnt* pCnt = &pFmt->GetCntnt(); DBG_ASSERT( pCnt->GetCntntIdx() && pDoc->GetNodes()[ pCnt->GetCntntIdx()-> - GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?") + GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?"); SwOLENode* pOleNode = pDoc->GetNodes()[ pCnt->GetCntntIdx() ->GetIndex() + 1 ]->GetOLENode(); @@ -3178,7 +3178,7 @@ sal_Int64 SAL_CALL SwXTextEmbeddedObject::getAspect() throw (uno::RuntimeExcepti const SwFmtCntnt* pCnt = &pFmt->GetCntnt(); DBG_ASSERT( pCnt->GetCntntIdx() && pDoc->GetNodes()[ pCnt->GetCntntIdx()-> - GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?") + GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?"); return pDoc->GetNodes()[ pCnt->GetCntntIdx()->GetIndex() + 1 ]->GetOLENode()->GetAspect(); } @@ -3195,7 +3195,7 @@ void SAL_CALL SwXTextEmbeddedObject::setAspect( sal_Int64 nAspect ) throw (uno:: const SwFmtCntnt* pCnt = &pFmt->GetCntnt(); DBG_ASSERT( pCnt->GetCntntIdx() && pDoc->GetNodes()[ pCnt->GetCntntIdx()-> - GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?") + GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?"); pDoc->GetNodes()[ pCnt->GetCntntIdx()->GetIndex() + 1 ]->GetOLENode()->SetAspect( nAspect ); } @@ -3210,7 +3210,7 @@ uno::Reference< graphic::XGraphic > SAL_CALL SwXTextEmbeddedObject::getReplaceme const SwFmtCntnt* pCnt = &pFmt->GetCntnt(); DBG_ASSERT( pCnt->GetCntntIdx() && pDoc->GetNodes()[ pCnt->GetCntntIdx()-> - GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?") + GetIndex() + 1 ]->GetOLENode(), "kein OLE-Node?"); Graphic* pGraphic = pDoc->GetNodes()[ pCnt->GetCntntIdx()->GetIndex() + 1 ]->GetOLENode()->GetGraphic(); if ( pGraphic ) @@ -3344,7 +3344,7 @@ void SwXOLEListener::disposing( const lang::EventObject& rEvent ) } catch(uno::Exception const &) { - DBG_ERROR("OLE Listener couldn't be removed") + DBG_ERROR("OLE Listener couldn't be removed"); } } /* --------------------------------------------------------------------------- diff --git a/sw/source/core/unocore/unoftn.cxx b/sw/source/core/unocore/unoftn.cxx index ea753a33bcf6..003eccb8d101 100644 --- a/sw/source/core/unocore/unoftn.cxx +++ b/sw/source/core/unocore/unoftn.cxx @@ -210,7 +210,7 @@ void SwXFootnote::setLabel(const OUString& aLabel) throw( uno::RuntimeException if(pFmt) { const SwTxtFtn* pTxtFtn = pFmt->GetTxtFtn(); - DBG_ASSERT(pTxtFtn, "kein TextNode?") + DBG_ASSERT(pTxtFtn, "kein TextNode?"); SwTxtNode& rTxtNode = (SwTxtNode&)pTxtFtn->GetTxtNode(); SwPaM aPam(rTxtNode, *pTxtFtn->GetStart()); @@ -318,7 +318,7 @@ void SwXFootnote::dispose(void) throw( uno::RuntimeException ) if(pFmt) { const SwTxtFtn* pTxtFtn = pFmt->GetTxtFtn(); - DBG_ASSERT(pTxtFtn, "kein TextNode?") + DBG_ASSERT(pTxtFtn, "kein TextNode?"); SwTxtNode& rTxtNode = (SwTxtNode&)pTxtFtn->GetTxtNode(); xub_StrLen nPos = *pTxtFtn->GetStart(); SwPaM aPam(rTxtNode, nPos, rTxtNode, nPos+1 ); @@ -528,7 +528,7 @@ uno::Any SwXFootnote::getPropertyValue( const OUString& rPropertyName ) if(pFmt) { const SwTxtFtn* pTxtFtn = pFmt->GetTxtFtn(); - DBG_ASSERT(pTxtFtn, "no TextNode?") + DBG_ASSERT(pTxtFtn, "no TextNode?"); aRet <<= (sal_Int16)pTxtFtn->GetSeqRefNo(); } } diff --git a/sw/source/core/unocore/unoidx.cxx b/sw/source/core/unocore/unoidx.cxx index 45063718f756..47e4f3623d34 100644 --- a/sw/source/core/unocore/unoidx.cxx +++ b/sw/source/core/unocore/unoidx.cxx @@ -431,7 +431,7 @@ void SwXDocumentIndex::setPropertyValue(const OUString& rPropertyName, OUString sNewName; aValue >>= sNewName; lcl_ConvertTOUNameToUserName(sNewName); - DBG_ASSERT(TOX_USER == eTxBaseType, "tox type name can only be changed for user indexes") + DBG_ASSERT(TOX_USER == eTxBaseType, "tox type name can only be changed for user indexes"); if(GetFmt()) { OUString sTmp = pTOXBase->GetTOXType()->GetTypeName(); @@ -975,28 +975,28 @@ uno::Any SwXDocumentIndex::getPropertyValue(const OUString& rPropertyName) -----------------------------------------------------------------------*/ void SwXDocumentIndex::addPropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 09:35:06--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXDocumentIndex::removePropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 09:35:06--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXDocumentIndex::addVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 09:35:07--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXDocumentIndex::removeVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 09:35:07--------------------------------------------------- @@ -1889,28 +1889,28 @@ uno::Any SwXDocumentIndexMark::getPropertyValue(const OUString& rPropertyName) -----------------------------------------------------------------------*/ void SwXDocumentIndexMark::addPropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 10:25:46--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXDocumentIndexMark::removePropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 10:25:47--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXDocumentIndexMark::addVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 10:25:47--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXDocumentIndexMark::removeVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 10:25:47--------------------------------------------------- diff --git a/sw/source/core/unocore/unomap.cxx b/sw/source/core/unocore/unomap.cxx index dcf1b93814f0..f19f9989291c 100644 --- a/sw/source/core/unocore/unomap.cxx +++ b/sw/source/core/unocore/unomap.cxx @@ -597,7 +597,7 @@ void SwUnoPropertyMapProvider::Sort( sal_uInt16 nId ) const SfxItemPropertyMap* SwUnoPropertyMapProvider::GetPropertyMap(sal_uInt16 nPropertyId) { - DBG_ASSERT(nPropertyId < PROPERTY_MAP_END, "Id ?" ) + DBG_ASSERT(nPropertyId < PROPERTY_MAP_END, "Id ?" ); if( !aMapArr[ nPropertyId ] ) { switch(nPropertyId) diff --git a/sw/source/core/unocore/unoobj.cxx b/sw/source/core/unocore/unoobj.cxx index 82bac90642a3..ae207bde83b7 100644 --- a/sw/source/core/unocore/unoobj.cxx +++ b/sw/source/core/unocore/unoobj.cxx @@ -913,7 +913,7 @@ void SwXTextCursor::DeleteAndInsert(const String& rText) { if( !SwUnoCursorHelper::DocInsertStringSplitCR( *pDoc, *_pStartCrsr, rText ) ) { - DBG_ASSERT( sal_False, "Doc->Insert(Str) failed." ) + DBG_ASSERT( sal_False, "Doc->Insert(Str) failed." ); } SwXTextCursor::SelectPam(*pUnoCrsr, sal_True); _pStartCrsr->Left(rText.Len(), CRSR_SKIP_CHARS, FALSE, FALSE); @@ -2132,28 +2132,28 @@ Any SwXTextCursor::getPropertyValue(const OUString& rPropertyName) -----------------------------------------------------------------------*/ void SwXTextCursor::addPropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 09.12.98 14:18:57--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextCursor::removePropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 09.12.98 14:18:57--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextCursor::addVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 09.12.98 14:18:58--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextCursor::removeVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 05.03.99 11:36:11--------------------------------------------------- diff --git a/sw/source/core/unocore/unoobj2.cxx b/sw/source/core/unocore/unoobj2.cxx index ebe9a92fff49..216cee867e1f 100644 --- a/sw/source/core/unocore/unoobj2.cxx +++ b/sw/source/core/unocore/unoobj2.cxx @@ -610,7 +610,7 @@ uno::Reference< XEnumeration > SwXTextCursor::createEnumeration(void) throw( Ru pParentText = reinterpret_cast< SwXText *>( sal::static_int_cast< sal_IntPtr >( xTunnel->getSomething(SwXText::getUnoTunnelId()) )); } - DBG_ASSERT(pParentText, "parent is not a SwXText") + DBG_ASSERT(pParentText, "parent is not a SwXText"); SwUnoCrsr* pNewCrsr = pUnoCrsr->GetDoc()->CreateUnoCrsr(*pUnoCrsr->GetPoint()); if(pUnoCrsr->HasMark()) @@ -1378,7 +1378,7 @@ uno::Reference< XText > SwXTextRange::getText(void) throw( uno::RuntimeExceptio { // jetzt noch alle Faelle finden, die nicht abgedeckt sind // (Body, Kopf-/Fusszeilen, Fussnotentext ) - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } } return xParentText; @@ -1582,7 +1582,7 @@ sal_Bool SwXTextRange::XTextRangeToSwPaM( SwUnoInternalPaM& rToFill, } if(pUnoCrsr && pDoc == rToFill.GetDoc()) { - DBG_ASSERT((SwPaM*)pUnoCrsr->GetNext() == pUnoCrsr, "was machen wir mit Ringen?" ) + DBG_ASSERT((SwPaM*)pUnoCrsr->GetNext() == pUnoCrsr, "was machen wir mit Ringen?" ); bRet = sal_True; *rToFill.GetPoint() = *pUnoCrsr->GetPoint(); if(pPara) @@ -1790,7 +1790,7 @@ uno::Reference< XEnumeration > SwXTextRange::createEnumeration(void) throw( Run pParentText = reinterpret_cast< SwXText * >( sal::static_int_cast< sal_IntPtr >( xTunnel->getSomething(SwXText::getUnoTunnelId()) )); } - DBG_ASSERT(pParentText, "parent is not a SwXText") + DBG_ASSERT(pParentText, "parent is not a SwXText"); CursorType eSetType = RANGE_IN_CELL == eRangePosition ? CURSOR_SELECTION_IN_TABLE : CURSOR_SELECTION; uno::Reference< XEnumeration > xRet = new SwXParagraphEnumeration(pParentText, *pNewCrsr, eSetType); return xRet; @@ -1864,7 +1864,7 @@ void SAL_CALL SwXTextRange::addPropertyChangeListener( const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener >& /*aListener*/ ) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 03.05.00 12:41:48--------------------------------------------------- @@ -1873,7 +1873,7 @@ void SAL_CALL SwXTextRange::removePropertyChangeListener( const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener >& /*aListener*/ ) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 03.05.00 12:41:48--------------------------------------------------- @@ -1882,7 +1882,7 @@ void SAL_CALL SwXTextRange::addVetoableChangeListener( const OUString& /*PropertyName*/, const uno::Reference< XVetoableChangeListener >& /*aListener*/ ) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 03.05.00 12:41:48--------------------------------------------------- @@ -1891,7 +1891,7 @@ void SAL_CALL SwXTextRange::removeVetoableChangeListener( const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener >& /*aListener*/ ) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 03.05.00 12:41:48--------------------------------------------------- @@ -2168,7 +2168,7 @@ void SwXTextCursor::SetString(SwCursor& rCrsr, const OUString& rString) { if( !SwUnoCursorHelper::DocInsertStringSplitCR( *pDoc, rCrsr, aText ) ) { - DBG_ASSERT( sal_False, "DocInsertStringSplitCR" ) + DBG_ASSERT( sal_False, "DocInsertStringSplitCR" ); } SwXTextCursor::SelectPam(rCrsr, sal_True); rCrsr.Left(nTxtLen, CRSR_SKIP_CHARS, FALSE, FALSE); diff --git a/sw/source/core/unocore/unoparagraph.cxx b/sw/source/core/unocore/unoparagraph.cxx index 1c3becfa8b39..06db11ac4da5 100644 --- a/sw/source/core/unocore/unoparagraph.cxx +++ b/sw/source/core/unocore/unoparagraph.cxx @@ -195,7 +195,7 @@ SwXParagraph::~SwXParagraph() ---------------------------------------------------------------------------*/ void SwXParagraph::attachToText(SwXText* pParent, SwUnoCrsr* pCrsr) { - DBG_ASSERT(m_bIsDescriptor, "Paragraph is not a descriptor") + DBG_ASSERT(m_bIsDescriptor, "Paragraph is not a descriptor"); if(m_bIsDescriptor) { m_bIsDescriptor = FALSE; @@ -671,21 +671,21 @@ void SwXParagraph::addPropertyChangeListener( const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 08:12:50--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXParagraph::removePropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 08:12:50--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXParagraph::addVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 08:12:51--------------------------------------------------- @@ -693,7 +693,7 @@ void SwXParagraph::addVetoableChangeListener(const OUString& /*PropertyName*/, c void SwXParagraph::removeVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } //----------------------------------------------------------------------------- beans::PropertyState lcl_SwXParagraph_getPropertyState( diff --git a/sw/source/core/unocore/unoport.cxx b/sw/source/core/unocore/unoport.cxx index 35d0f87dbfe3..980d7893229c 100644 --- a/sw/source/core/unocore/unoport.cxx +++ b/sw/source/core/unocore/unoport.cxx @@ -802,28 +802,28 @@ void SwXTextPortion::addPropertyChangeListener( const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 09:56:58--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextPortion::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 09:56:58--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextPortion::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 09:56:59--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextPortion::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 08.03.99 09:41:43--------------------------------------------------- @@ -914,7 +914,7 @@ OUString SwXTextPortion::getPresentation(sal_Bool /*bShowCommand*/) throw( uno:: if(pUnoCrsr && 0 != (pFmt = GetFldFmt())) { const SwField* pField = pFmt->GetFld(); - DBG_ERROR("bShowCommand auswerten!") + DBG_ERROR("bShowCommand auswerten!"); sRet = pField->Expand(); } return sRet; diff --git a/sw/source/core/unocore/unoportenum.cxx b/sw/source/core/unocore/unoportenum.cxx index 7b25bd4a3b48..30e476b9af25 100644 --- a/sw/source/core/unocore/unoportenum.cxx +++ b/sw/source/core/unocore/unoportenum.cxx @@ -131,7 +131,7 @@ SwXTextPortionEnumeration::SwXTextPortionEnumeration( DBG_ASSERT(nEnd == -1 || (nStart <= nEnd && nEnd <= pUnoCrsr->Start()->nNode.GetNode().GetTxtNode()->GetTxt().Len()), - "start or end value invalid!") + "start or end value invalid!"); //alle Rahmen, Grafiken und OLEs suchen, die an diesem Absatz // AM ZEICHEN gebunden sind ::CollectFrameAtNode( *this, pUnoCrsr->GetPoint()->nNode, @@ -607,7 +607,7 @@ Reference lcl_ExportHints(SwpHints* pHints, if(aBkmArr.size() && (*aBkmArr.begin())->getIndex() < nMovePos) { DBG_ASSERT((*aBkmArr.begin())->getIndex() > nCurrentIndex, - "forgotten bookmark(s)") + "forgotten bookmark(s)"); nMovePos = (sal_uInt16)(*aBkmArr.begin())->getIndex(); } // break up portions for redlines @@ -836,7 +836,7 @@ void SwXTextPortionEnumeration::CreatePortions() pUnoCrsr->DeleteMark(); DBG_ASSERT(pUnoCrsr->Start()->nNode.GetNode().GetTxtNode() && nStartPos <= pUnoCrsr->Start()->nNode.GetNode().GetTxtNode()->GetTxt().Len(), - "Incorrect start position" ) + "Incorrect start position" ); pUnoCrsr->Right((xub_StrLen)nStartPos,CRSR_SKIP_CHARS,FALSE,FALSE); } if(pUnoCrsr /*&& !bAtEnd*/) @@ -990,7 +990,7 @@ void SwXTextPortionEnumeration::CreatePortions() else { DBG_ASSERT(nNextIndex > nCurrentIndex || nNextIndex == nEndPos, - "wrong move index") + "wrong move index"); pUnoCrsr->Right((sal_uInt16)(nNextIndex - nCurrentIndex),CRSR_SKIP_CHARS,FALSE,FALSE); } } @@ -1075,7 +1075,7 @@ void SwXTextPortionEnumeration::CreatePortions() } else { - DBG_ERROR("kein TextNode - was nun?") + DBG_ERROR("kein TextNode - was nun?"); } } if(*pUnoCrsr->GetPoint() < *pUnoCrsr->GetMark()) diff --git a/sw/source/core/unocore/unoredline.cxx b/sw/source/core/unocore/unoredline.cxx index 26054454dbfc..69bfa91a24c9 100644 --- a/sw/source/core/unocore/unoredline.cxx +++ b/sw/source/core/unocore/unoredline.cxx @@ -481,11 +481,11 @@ void SwXRedline::setPropertyValue( const OUString& rPropertyName, const uno::Any throw uno::RuntimeException(); if(rPropertyName.equalsAsciiL(SW_PROP_NAME(UNO_NAME_REDLINE_AUTHOR))) { - DBG_ERROR("currently not available") + DBG_ERROR("currently not available"); } else if(rPropertyName.equalsAsciiL(SW_PROP_NAME(UNO_NAME_REDLINE_DATE_TIME))) { - DBG_ERROR("currently not available") + DBG_ERROR("currently not available"); // util::DateTime aDT; // if(aValue >>= aDT) // pRedline->SetTimeStamp(lcl_DateTimeFromUno(aDT)); @@ -497,7 +497,7 @@ void SwXRedline::setPropertyValue( const OUString& rPropertyName, const uno::Any } else if(rPropertyName.equalsAsciiL(SW_PROP_NAME(UNO_NAME_REDLINE_TYPE))) { - DBG_ERROR("currently not available") + DBG_ERROR("currently not available"); OUString sTmp; aValue >>= sTmp; if(!sTmp.getLength()) throw lang::IllegalArgumentException(); @@ -505,7 +505,7 @@ void SwXRedline::setPropertyValue( const OUString& rPropertyName, const uno::Any } else if(rPropertyName.equalsAsciiL(SW_PROP_NAME(UNO_NAME_REDLINE_SUCCESSOR_DATA))) { - DBG_ERROR("currently not available") + DBG_ERROR("currently not available"); /* SwRedlineData* pNext = pRedline->GetRedlineData().Next(); uno::Sequence aValues; if(!(aValue =>> aValues) || !pNext) @@ -516,7 +516,7 @@ void SwXRedline::setPropertyValue( const OUString& rPropertyName, const uno::Any { if(pValues[nValue].Name.equalsAscii(UNO_NAME_REDLINE_AUTHOR.pName) { - DBG_ERROR("currently not available") + DBG_ERROR("currently not available"); } else if(pValues[nValue].Name.equalsAscii(UNO_NAME_REDLINE_DATE_TIME.pName)) { @@ -564,14 +564,14 @@ uno::Any SwXRedline::getPropertyValue( const OUString& rPropertyName ) case ND_SECTIONNODE: { SwSectionNode* pSectNode = pNode->GetSectionNode(); - DBG_ASSERT(pSectNode, "No section node!") + DBG_ASSERT(pSectNode, "No section node!"); xRet = SwXTextSections::GetObject( *pSectNode->GetSection().GetFmt() ); } break; case ND_TABLENODE : { SwTableNode* pTblNode = pNode->GetTableNode(); - DBG_ASSERT(pTblNode, "No table node!") + DBG_ASSERT(pTblNode, "No table node!"); SwTable& rTbl = pTblNode->GetTable(); SwFrmFmt* pTblFmt = rTbl.GetFrmFmt(); xRet = SwXTextTables::GetObject( *pTblFmt ); diff --git a/sw/source/core/unocore/unoredlines.cxx b/sw/source/core/unocore/unoredlines.cxx index 9d21aeaf5ec0..efaaa32c9e3d 100644 --- a/sw/source/core/unocore/unoredlines.cxx +++ b/sw/source/core/unocore/unoredlines.cxx @@ -133,7 +133,7 @@ OUString SwXRedlines::getImplementationName(void) throw( uno::RuntimeException ) BOOL SwXRedlines::supportsService(const rtl::OUString& /*ServiceName*/) throw( uno::RuntimeException ) { - DBG_ERROR("not implemented") + DBG_ERROR("not implemented"); return FALSE; } /*-- 11.01.01 15:28:57--------------------------------------------------- @@ -142,7 +142,7 @@ BOOL SwXRedlines::supportsService(const rtl::OUString& /*ServiceName*/) uno::Sequence< OUString > SwXRedlines::getSupportedServiceNames(void) throw( uno::RuntimeException ) { - DBG_ERROR("not implemented") + DBG_ERROR("not implemented"); return uno::Sequence< OUString >(); } /*-- 11.01.01 15:28:57--------------------------------------------------- diff --git a/sw/source/core/unocore/unosect.cxx b/sw/source/core/unocore/unosect.cxx index 321a2ac96f83..b318f2e47352 100644 --- a/sw/source/core/unocore/unosect.cxx +++ b/sw/source/core/unocore/unosect.cxx @@ -1229,7 +1229,7 @@ void SwXTextSection::addPropertiesChangeListener( const uno::Sequence< ::rtl::OUString >& /*aPropertyNames*/, const uno::Reference< beans::XPropertiesChangeListener >& /*xListener*/ ) throw(RuntimeException) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /* -----------------------------12.02.01 10:30-------------------------------- @@ -1238,7 +1238,7 @@ void SwXTextSection::removePropertiesChangeListener( const uno::Reference< beans::XPropertiesChangeListener >& /*xListener*/ ) throw(RuntimeException) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /* -----------------------------12.02.01 10:30-------------------------------- @@ -1248,35 +1248,35 @@ void SwXTextSection::firePropertiesChangeEvent( const uno::Reference< beans::XPropertiesChangeListener >& /*xListener*/ ) throw(RuntimeException) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 10.12.98 14:47:13--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextSection::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 10.12.98 14:47:13--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextSection::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 10.12.98 14:47:14--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextSection::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 10.12.98 14:47:14--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextSection::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 08.11.00 10:47:55--------------------------------------------------- diff --git a/sw/source/core/unocore/unosett.cxx b/sw/source/core/unocore/unosett.cxx index fe956aa31e79..ad22fc3991dd 100644 --- a/sw/source/core/unocore/unosett.cxx +++ b/sw/source/core/unocore/unosett.cxx @@ -607,7 +607,7 @@ void SwXFootnoteProperties::addPropertyChangeListener( const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 14:03:21--------------------------------------------------- @@ -616,7 +616,7 @@ void SwXFootnoteProperties::removePropertyChangeListener( const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 14:03:21--------------------------------------------------- @@ -625,7 +625,7 @@ void SwXFootnoteProperties::addVetoableChangeListener( const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 14:03:22--------------------------------------------------- @@ -634,7 +634,7 @@ void SwXFootnoteProperties::removeVetoableChangeListener( const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /****************************************************************** @@ -866,7 +866,7 @@ uno::Any SwXEndnoteProperties::getPropertyValue(const OUString& rPropertyName) void SwXEndnoteProperties::addPropertyChangeListener( const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 14:27:41--------------------------------------------------- @@ -875,7 +875,7 @@ void SwXEndnoteProperties::removePropertyChangeListener(const OUString& /*Proper const uno:: Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 14:27:41--------------------------------------------------- @@ -884,7 +884,7 @@ void SwXEndnoteProperties::addVetoableChangeListener(const OUString& /*PropertyN const uno:: Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 14:27:42--------------------------------------------------- @@ -892,7 +892,7 @@ void SwXEndnoteProperties::addVetoableChangeListener(const OUString& /*PropertyN void SwXEndnoteProperties::removeVetoableChangeListener(const OUString& /*PropertyName*/, const uno:: Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /****************************************************************** * SwXLineNumberingProperties @@ -1180,21 +1180,21 @@ Any SwXLineNumberingProperties::getPropertyValue(const OUString& rPropertyName) -----------------------------------------------------------------------*/ void SwXLineNumberingProperties::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno:: Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { -DBG_WARNING("not implemented") +DBG_WARNING("not implemented"); } /*-- 14.12.98 14:33:38--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXLineNumberingProperties::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno:: Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { -DBG_WARNING("not implemented") +DBG_WARNING("not implemented"); } /*-- 14.12.98 14:33:39--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXLineNumberingProperties::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno:: Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { -DBG_WARNING("not implemented") +DBG_WARNING("not implemented"); } /*-- 14.12.98 14:33:39--------------------------------------------------- @@ -1202,7 +1202,7 @@ DBG_WARNING("not implemented") void SwXLineNumberingProperties::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno:: Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { -DBG_WARNING("not implemented") +DBG_WARNING("not implemented"); } /****************************************************************** * SwXNumberingRules diff --git a/sw/source/core/unocore/unosrch.cxx b/sw/source/core/unocore/unosrch.cxx index da05bd0ae946..4a6862879bfb 100644 --- a/sw/source/core/unocore/unosrch.cxx +++ b/sw/source/core/unocore/unosrch.cxx @@ -606,28 +606,28 @@ SET_UINT16: -----------------------------------------------------------------------*/ void SwXTextSearch::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 13:07:13--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextSearch::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw(beans::UnknownPropertyException, lang::WrappedTargetException,uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 13:07:14--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextSearch::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw(beans::UnknownPropertyException, lang::WrappedTargetException,uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 13:07:14--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextSearch::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw(beans::UnknownPropertyException, lang::WrappedTargetException,uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 14.12.98 13:07:14--------------------------------------------------- diff --git a/sw/source/core/unocore/unostyle.cxx b/sw/source/core/unocore/unostyle.cxx index e17fbebf893d..feb89ef968e4 100644 --- a/sw/source/core/unocore/unostyle.cxx +++ b/sw/source/core/unocore/unostyle.cxx @@ -1702,7 +1702,7 @@ struct SwStyleBase_Impl sal_Bool HasItemSet() {return mxNewBase.is();} SfxItemSet& GetItemSet() { - DBG_ASSERT(mxNewBase.is(), "no SwDocStyleSheet available") + DBG_ASSERT(mxNewBase.is(), "no SwDocStyleSheet available"); if(!pItemSet) pItemSet = new SfxItemSet(mxNewBase->GetItemSet()); return *pItemSet; @@ -2301,7 +2301,7 @@ uno::Any lcl_GetStyleProperty(const SfxItemPropertyMap* pMap, case FN_UNO_NUM_RULES: //Sonderbehandlung fuer das SvxNumRuleItem: { const SwNumRule* pRule = rBase.mxNewBase->GetNumRule(); - DBG_ASSERT(pRule, "Wo ist die NumRule?") + DBG_ASSERT(pRule, "Wo ist die NumRule?"); uno::Reference< container::XIndexReplace > xRules = new SwXNumberingRules(*pRule); aRet.setValue(&xRules, ::getCppuType((uno::Reference*)0)); } @@ -2619,7 +2619,7 @@ void SwXStyle::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 17.12.98 08:26:54--------------------------------------------------- @@ -2628,7 +2628,7 @@ void SwXStyle::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 17.12.98 08:26:54--------------------------------------------------- @@ -2637,7 +2637,7 @@ void SwXStyle::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 17.12.98 08:26:54--------------------------------------------------- @@ -2646,7 +2646,7 @@ void SwXStyle::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 08.03.99 10:50:26--------------------------------------------------- @@ -2787,7 +2787,7 @@ void SAL_CALL SwXStyle::setPropertiesToDefault( const uno::Sequence< OUString >& { pBasePool->SetSearchMask(eFamily); SfxStyleSheetBase* pBase = pBasePool->Find(sStyleName); - DBG_ASSERT(pBase, "Where is the style?") + DBG_ASSERT(pBase, "Where is the style?"); if(pBase) { @@ -2860,7 +2860,7 @@ void SAL_CALL SwXStyle::setAllPropertiesToDefault( ) { pBasePool->SetSearchMask(eFamily); SfxStyleSheetBase* pBase = pBasePool->Find(sStyleName); - DBG_ASSERT(pBase, "where is the style, you fiend!?") + DBG_ASSERT(pBase, "where is the style, you fiend!?"); if(pBase) { @@ -2990,7 +2990,7 @@ uno::Sequence< uno::Any > SAL_CALL SwXStyle::getPropertyDefaults( const uno::Seq { pBasePool->SetSearchMask(eFamily); SfxStyleSheetBase* pBase = pBasePool->Find(sStyleName); - DBG_ASSERT(pBase, "Doesn't seem to be a style!") + DBG_ASSERT(pBase, "Doesn't seem to be a style!"); if(pBase) { diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx index 3599562b07fc..4fbffb64ab54 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -1218,28 +1218,28 @@ uno::Any SwXCell::getPropertyValue(const OUString& rPropertyName) -----------------------------------------------------------------------*/ void SwXCell::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 10:56:35--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXCell::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 10:56:36--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXCell::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 10:56:36--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXCell::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 10:56:37--------------------------------------------------- @@ -1542,28 +1542,28 @@ uno::Any SwXTextTableRow::getPropertyValue(const OUString& rPropertyName) throw( -----------------------------------------------------------------------*/ void SwXTextTableRow::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:04:48--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTableRow::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:04:48--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTableRow::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:04:49--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTableRow::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:04:49--------------------------------------------------- @@ -1992,7 +1992,7 @@ uno::Any SwXTextTableCursor::getPropertyValue(const OUString& rPropertyName) break; case RES_BOXATR_FORMAT: //GetAttr fuer Tabellenselektion am Doc fehlt noch - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); break; case FN_UNO_PARA_STYLE: { @@ -2025,28 +2025,28 @@ uno::Any SwXTextTableCursor::getPropertyValue(const OUString& rPropertyName) -----------------------------------------------------------------------*/ void SwXTextTableCursor::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:16:18--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTableCursor::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:16:18--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTableCursor::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:16:19--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTableCursor::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:16:19--------------------------------------------------- @@ -3074,7 +3074,7 @@ uno::Sequence< OUString > SwXTextTable::getRowDescriptions(void) throw( uno::Run } else { - DBG_ERROR("Wo kommen die Labels her?") + DBG_ERROR("Wo kommen die Labels her?"); } } else @@ -3112,7 +3112,7 @@ void SwXTextTable::setRowDescriptions(const uno::Sequence< OUString >& rRowDesc) } else { - DBG_ERROR("Wohin mit den Labels?") + DBG_ERROR("Wohin mit den Labels?"); } } else @@ -3154,7 +3154,7 @@ uno::Sequence< OUString > SwXTextTable::getColumnDescriptions(void) } else { - DBG_ERROR("Wo kommen die Labels her?") + DBG_ERROR("Wo kommen die Labels her?"); } } else @@ -3194,7 +3194,7 @@ void SwXTextTable::setColumnDescriptions(const uno::Sequence< OUString >& rColum } else { - DBG_ERROR("Wo kommen die Labels her?") + DBG_ERROR("Wo kommen die Labels her?"); } } else @@ -3738,28 +3738,28 @@ uno::Any SwXTextTable::getPropertyValue(const OUString& rPropertyName) throw( be -----------------------------------------------------------------------*/ void SwXTextTable::addPropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:42:52--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTable::removePropertyChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:42:58--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTable::addVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:42:58--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXTextTable::removeVetoableChangeListener(const OUString& /*rPropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*xListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 12:42:58--------------------------------------------------- @@ -4287,7 +4287,7 @@ uno::Any SwXCellRange::getPropertyValue(const OUString& rPropertyName) throw( be break; case RES_BOXATR_FORMAT: //GetAttr fuer Tabellenselektion am Doc fehlt noch - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); break; case FN_UNO_PARA_STYLE: { @@ -4334,28 +4334,28 @@ uno::Any SwXCellRange::getPropertyValue(const OUString& rPropertyName) throw( be -----------------------------------------------------------------------*/ void SwXCellRange::addPropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 14:27:35--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXCellRange::removePropertyChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XPropertyChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 14:27:36--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXCellRange::addVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*-- 11.12.98 14:27:36--------------------------------------------------- -----------------------------------------------------------------------*/ void SwXCellRange::removeVetoableChangeListener(const OUString& /*PropertyName*/, const uno::Reference< beans::XVetoableChangeListener > & /*aListener*/) throw( beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); } /*----------------------------------------------------------------------- @@ -4446,7 +4446,7 @@ void SwXCellRange::GetDataSequence( else { DBG_ASSERT( table::CellContentType_TEXT == pXCell->getType(), - "this branch of 'if' is only for text formatted cells" ) + "this branch of 'if' is only for text formatted cells" ); // now we'll try to get a useful numerical value // from the text in the cell... @@ -4794,7 +4794,7 @@ uno::Sequence< OUString > SwXCellRange::getRowDescriptions(void) } else { - DBG_ERROR("Wo kommen die Labels her?") + DBG_ERROR("Wo kommen die Labels her?"); } } else @@ -4833,7 +4833,7 @@ void SwXCellRange::setRowDescriptions(const uno::Sequence< OUString >& rRowDesc) } else { - DBG_ERROR("Wohin mit den Labels?") + DBG_ERROR("Wohin mit den Labels?"); } } } @@ -4872,7 +4872,7 @@ uno::Sequence< OUString > SwXCellRange::getColumnDescriptions(void) } else { - DBG_ERROR("Wo kommen die Labels her?") + DBG_ERROR("Wo kommen die Labels her?"); } } else @@ -4908,7 +4908,7 @@ void SwXCellRange::setColumnDescriptions(const uno::Sequence< OUString >& Column } else { - DBG_ERROR("Wo kommen die Labels her?") + DBG_ERROR("Wo kommen die Labels her?"); } } } @@ -4934,7 +4934,7 @@ void SwXCellRange::removeChartDataChangeEventListener(const uno::Reference< char * --------------------------------------------------*/ sal_Bool SwXCellRange::isNotANumber(double /*fNumber*/) throw( uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); return sal_False; } @@ -4943,7 +4943,7 @@ sal_Bool SwXCellRange::isNotANumber(double /*fNumber*/) throw( uno::RuntimeExcep * --------------------------------------------------*/ double SwXCellRange::getNotANumber(void) throw( uno::RuntimeException ) { - DBG_WARNING("not implemented") + DBG_WARNING("not implemented"); return 0.; } /*-- 11.12.98 14:27:38--------------------------------------------------- diff --git a/sw/source/core/unocore/unotext.cxx b/sw/source/core/unocore/unotext.cxx index 24b3d21b331c..aa87d98f05ed 100644 --- a/sw/source/core/unocore/unotext.cxx +++ b/sw/source/core/unocore/unotext.cxx @@ -1011,7 +1011,7 @@ sal_Bool SwXText::CheckForOwnMember( const OTextCursorHelper* pCursor) throw(lang::IllegalArgumentException, uno::RuntimeException) { - DBG_ASSERT((!pRange || !pCursor) && (pRange || pCursor), "only one pointer will be checked" ) + DBG_ASSERT((!pRange || !pCursor) && (pRange || pCursor), "only one pointer will be checked" ); uno::Reference xOwnCursor = createCursor(); uno::Reference xTunnel( xOwnCursor, uno::UNO_QUERY); @@ -1021,7 +1021,7 @@ sal_Bool SwXText::CheckForOwnMember( pOwnCursor = reinterpret_cast< OTextCursorHelper * >( sal::static_int_cast< sal_IntPtr >( xTunnel->getSomething(OTextCursorHelper::getUnoTunnelId()) )); } - DBG_ASSERT(pOwnCursor, "OTextCursorHelper::getUnoTunnelId() ??? ") + DBG_ASSERT(pOwnCursor, "OTextCursorHelper::getUnoTunnelId() ??? "); const SwStartNode* pOwnStartNode = pOwnCursor->GetPaM()->GetNode()->StartOfSectionNode(); SwStartNodeType eSearchNodeType = SwNormalStartNode; switch(eCrsrType) @@ -1126,7 +1126,7 @@ sal_Int16 SwXText::ComparePositions( nCompare = -1; else { - DBG_ASSERT(*pStart1 == *pStart2, "SwPositions should be equal here") + DBG_ASSERT(*pStart1 == *pStart2, "SwPositions should be equal here"); nCompare = 0; } } @@ -2102,7 +2102,7 @@ uno::Reference< text::XTextTable > SwXText::convertToTable( else { //find the cell that - DBG_ASSERT(aMergedCells.size(), "the first merged cell is missing") + DBG_ASSERT(aMergedCells.size(), "the first merged cell is missing"); if( aMergedCells.size() ) { std::vector::iterator aMergedIter = aMergedCells.begin(); @@ -2122,7 +2122,7 @@ uno::Reference< text::XTextTable > SwXText::convertToTable( ++aMergedIter; } #if OSL_DEBUG_LEVEL > 1 - DBG_ASSERT( bDbgFound, "couldn't find first vertically merged cell" ) + DBG_ASSERT( bDbgFound, "couldn't find first vertically merged cell" ); #endif } } -- cgit v1.2.3