summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-03 15:30:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-03 15:30:02 +0200
commitcfdc46a4bcd8aba03c7b29dfc535d66d5802f26a (patch)
tree06ff0fddfba2010a507fe24facf077a71bfbaac0 /sw
parent8a5374f2fdbd1e15c107133f55930cbc431edbd5 (diff)
loplugin:sallogareas
Change-Id: Idd4f44b66e67d938a1ba2b9c7ff4be0b0009ff53
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/layout/laycache.cxx6
1 files changed, 3 insertions, 3 deletions
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;
}