summaryrefslogtreecommitdiffstats
path: root/cppu
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-14 09:49:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-15 06:45:14 +0000
commitd15b4e204598fc7e4c1682c4f10228e217575937 (patch)
tree1173b2725abac5f06bfd2e28965a95256283e6a4 /cppu
parenttdf#104554: fix iterator calculus (diff)
downloadcore-d15b4e204598fc7e4c1682c4f10228e217575937.tar.gz
core-d15b4e204598fc7e4c1682c4f10228e217575937.zip
teach sallogareas plugin to catch inconsistencies
Change-Id: I8bcea5ffc74d48148bea78da8c17744e288c069a Reviewed-on: https://gerrit.libreoffice.org/32004 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/threadpool/threadpool.cxx2
-rw-r--r--cppu/source/typelib/typelib.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/cppu/source/threadpool/threadpool.cxx b/cppu/source/threadpool/threadpool.cxx
index 8f1304a5990e..e22d4d1d92ab 100644
--- a/cppu/source/threadpool/threadpool.cxx
+++ b/cppu/source/threadpool/threadpool.cxx
@@ -454,7 +454,7 @@ uno_threadpool_putJob(
if (!getThreadPool(hPool)->addJob( pThreadId, bIsOneway, pJob ,doRequest ))
{
SAL_WARN(
- "cppu",
+ "cppu.threadpool",
"uno_threadpool_putJob in parallel with uno_threadpool_destroy");
}
}
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index 4b644c4893a8..a7126b57c94a 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -716,7 +716,7 @@ void newTypeDescription(
&& (pStructMembers == nullptr || eTypeClass == typelib_TypeClass_STRUCT));
if (typelib_TypeClass_TYPEDEF == eTypeClass)
{
- SAL_WARN("cppu", "unexpected typedef!" );
+ SAL_WARN("cppu.typelib", "unexpected typedef!" );
typelib_typedescriptionreference_getDescription( ppRet, pType );
return;
}