[Libreoffice-commits] core.git: sw/source
Stephan Bergmann
sbergman at redhat.com
Mon Apr 3 13:30:39 UTC 2017
sw/source/core/layout/laycache.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit cfdc46a4bcd8aba03c7b29dfc535d66d5802f26a
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Mon Apr 3 15:30:02 2017 +0200
loplugin:sallogareas
Change-Id: Idd4f44b66e67d938a1ba2b9c7ff4be0b0009ff53
diff --git a/sw/source/core/layout/laycache.cxx b/sw/source/core/layout/laycache.cxx
index b74f2bb163aa..65e8dcfc92d6 100644
--- a/sw/source/core/layout/laycache.cxx
+++ b/sw/source/core/layout/laycache.cxx
@@ -467,7 +467,7 @@ bool sanityCheckLayoutCache(SwLayCacheImpl const& rCache,
auto const nBreakIndex(rCache.GetBreakIndex(nIndex));
if (nBreakIndex < nNodeIndex || nMaxIndex <= nBreakIndex)
{
- SAL_WARN("sw.core.layout",
+ SAL_WARN("sw.core",
"invalid node index in layout-cache: " << nBreakIndex);
return false;
}
@@ -477,7 +477,7 @@ bool sanityCheckLayoutCache(SwLayCacheImpl const& rCache,
case SW_LAYCACHE_IO_REC_PARA:
if (!rNodes[nBreakIndex + nStartOfContent]->IsTextNode())
{
- SAL_WARN("sw.core.layout",
+ SAL_WARN("sw.core",
"invalid node of type 'P' in layout-cache");
return false;
}
@@ -485,7 +485,7 @@ bool sanityCheckLayoutCache(SwLayCacheImpl const& rCache,
case SW_LAYCACHE_IO_REC_TABLE:
if (!rNodes[nBreakIndex + nStartOfContent]->IsTableNode())
{
- SAL_WARN("sw.core.layout",
+ SAL_WARN("sw.core",
"invalid node of type 'T' in layout-cache");
return false;
}
More information about the Libreoffice-commits
mailing list