diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-04-03 21:06:59 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-04-03 21:06:59 +0200 |
commit | 282b3e8c4d45aacae57e3542b872cdbfebcc7195 (patch) | |
tree | 6d75b5e2d35e29dba2797855d0af3cd84a1587a0 /sw | |
parent | 5793364b830c88611ec62650e9820c0712d3b956 (diff) |
sw: [loplugin:sallogareas]
Change-Id: I94c552e4b2ae95f57b0c667f6072664eab570042
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; } |