diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-12-04 19:42:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-12-04 20:19:32 +0100 |
commit | ef80ef57f50cf41afa461fc8c188e40436194f1a (patch) | |
tree | 0a7f949aff33d54e8ec9d56dc563c8948028e95f /compilerplugins | |
parent | 62887aa764e51a74d3b452abd2297a05d9a6bd3f (diff) |
call createFastChildContextFallback in more places
to make my fastparser work easier to manage
Change-Id: If98592f016cd35ca13b48d9df363e32fb1095b55
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107233
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/xmlimport.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compilerplugins/clang/xmlimport.cxx b/compilerplugins/clang/xmlimport.cxx index b18554dfc768..a15c3c63f057 100644 --- a/compilerplugins/clang/xmlimport.cxx +++ b/compilerplugins/clang/xmlimport.cxx @@ -58,6 +58,9 @@ public: if (loplugin::isSamePathname(fn, SRCDIR "/xmloff/source/text/XMLIndexBibliographySourceContext.cxx")) return false; + // calling mxSlaveContext + if (loplugin::isSamePathname(fn, SRCDIR "/xmloff/source/draw/XMLNumberStyles.cxx")) + return false; return true; } |