[Libreoffice-commits] .: sw/source

Takeshi Abe tabe at kemper.freedesktop.org
Mon Aug 15 19:15:49 PDT 2011


 sw/source/core/crsr/crossrefbookmark.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit eba18bf9858b53877cd4174a8106d2aa589c57f6
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date:   Sat Aug 13 23:24:15 2011 +0900

    fixed class name in diagnosing message

diff --git a/sw/source/core/crsr/crossrefbookmark.cxx b/sw/source/core/crsr/crossrefbookmark.cxx
index 3f649ef..d7a6280 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);
     }


More information about the Libreoffice-commits mailing list