diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-09-28 00:14:05 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-09-28 13:46:50 +0900 |
commit | a80533c4a787e30973316778d482b0245815fac9 (patch) | |
tree | f15a25aba5243454ff3152846f6a9ad14af76357 /sw | |
parent | 59af654b80c595905ebf4fbc5c6454359beda337 (diff) |
fix typo in message
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/attr/fmtwrapinfluenceonobjpos.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/doc/docbm.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/attr/fmtwrapinfluenceonobjpos.cxx b/sw/source/core/attr/fmtwrapinfluenceonobjpos.cxx index c228387fcfd0..fdd9c5a64095 100644 --- a/sw/source/core/attr/fmtwrapinfluenceonobjpos.cxx +++ b/sw/source/core/attr/fmtwrapinfluenceonobjpos.cxx @@ -122,7 +122,7 @@ bool SwFmtWrapInfluenceOnObjPos::PutValue( const Any& rVal, sal_uInt8 nMemberId } break; default: - OSL_FAIL( "<SwFmtWrapInfluenceOnObjPos::QueryValue()> - unknown MemberId" ); + OSL_FAIL( "<SwFmtWrapInfluenceOnObjPos::PutValue(..)> - unknown MemberId" ); bRet = false; } diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx index a867f991b965..27c2211b38e5 100644 --- a/sw/source/core/doc/docbm.cxx +++ b/sw/source/core/doc/docbm.cxx @@ -481,7 +481,7 @@ namespace sw { namespace mark bool MarkManager::renameMark(::sw::mark::IMark* io_pMark, const ::rtl::OUString& rNewName) { OSL_PRECOND(io_pMark->GetMarkPos().GetDoc() == m_pDoc, - "<MarkManager::repositionMark(..)>" + "<MarkManager::renameMark(..)>" " - Mark is not in my doc."); if(io_pMark->GetName() == rNewName) return true; @@ -748,7 +748,7 @@ namespace sw { namespace mark void MarkManager::deleteMark(const IMark* const pMark) { OSL_PRECOND(pMark->GetMarkPos().GetDoc() == m_pDoc, - "<MarkManager::repositionMark(..)>" + "<MarkManager::deleteMark(..)>" " - Mark is not in my doc."); // finds the last Mark that is starting before pMark // (pMarkLow < pMark) |