diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/laycache.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/layout/laycache.cxx b/sw/source/core/layout/laycache.cxx index 5903b7d4a4d0..4d0e4c24bd03 100644 --- a/sw/source/core/layout/laycache.cxx +++ b/sw/source/core/layout/laycache.cxx @@ -468,7 +468,7 @@ bool sanityCheckLayoutCache(SwLayCacheImpl const& rCache, auto const nBreakIndex(rCache.GetBreakIndex(nIndex)); if (nBreakIndex < nNodeIndex || nMaxIndex <= nBreakIndex) { - SAL_WARN("sw.core", + SAL_WARN("sw.layout", "invalid node index in layout-cache: " << nBreakIndex); return false; } @@ -478,7 +478,7 @@ bool sanityCheckLayoutCache(SwLayCacheImpl const& rCache, case SW_LAYCACHE_IO_REC_PARA: if (!rNodes[nBreakIndex + nStartOfContent]->IsTextNode()) { - SAL_WARN("sw.core", + SAL_WARN("sw.layout", "invalid node of type 'P' in layout-cache"); return false; } @@ -486,7 +486,7 @@ bool sanityCheckLayoutCache(SwLayCacheImpl const& rCache, case SW_LAYCACHE_IO_REC_TABLE: if (!rNodes[nBreakIndex + nStartOfContent]->IsTableNode()) { - SAL_WARN("sw.core", + SAL_WARN("sw.layout", "invalid node of type 'T' in layout-cache"); return false; } |