diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-08-13 23:24:15 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-08-16 10:52:54 +0900 |
commit | eba18bf9858b53877cd4174a8106d2aa589c57f6 (patch) | |
tree | 3cd3e94bf2e3eed3d8eb3da5cfaaa0cc44dd9fd6 /sw | |
parent | ed1ecfc0c23e27db04685e39ca5f5ddb2b680017 (diff) |
fixed class name in diagnosing message
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/crsr/crossrefbookmark.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/crsr/crossrefbookmark.cxx b/sw/source/core/crsr/crossrefbookmark.cxx index 3f649ef7ed56..d7a6280bbdea 100644 --- a/sw/source/core/crsr/crossrefbookmark.cxx +++ b/sw/source/core/crsr/crossrefbookmark.cxx @@ -56,10 +56,10 @@ namespace sw { namespace mark void CrossRefBookmark::SetMarkPos(const SwPosition& rNewPos) { OSL_PRECOND(rNewPos.nNode.GetNode().GetTxtNode(), - "<SwCrossRefBookmark::SetMarkPos(..)>" + "<sw::mark::CrossRefBookmark::SetMarkPos(..)>" " - new bookmark position for cross-reference bookmark doesn't mark text node"); OSL_PRECOND(rNewPos.nContent.GetIndex() == 0, - "<SwCrossRefBookmark::SetMarkPos(..)>" + "<sw::mark::CrossRefBookmark::SetMarkPos(..)>" " - new bookmark position for cross-reference bookmark doesn't mark start of text node"); MarkBase::SetMarkPos(rNewPos); } @@ -67,7 +67,7 @@ namespace sw { namespace mark SwPosition& CrossRefBookmark::GetOtherMarkPos() const { OSL_PRECOND(false, - "<SwCrossRefBookmark::GetOtherMarkPos(..)>" + "<sw::mark::CrossRefBookmark::GetOtherMarkPos(..)>" " - this should never be called!"); return *static_cast<SwPosition*>(NULL); } |