summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-11-02 12:26:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-02 17:08:47 +0100
commit3940cf7d716f3e469f47d3c831a799e58edf2eb8 (patch)
tree96c54b88e76e8eeff2b58700fce6a3b4f6722cde /compilerplugins
parentdd24e21bb4f183048a738314934fc3f02ec093f1 (diff)
drop the SvXMLExport::EndElement method..
in favour of just using the endFastElement() method Change-Id: Id95abb0b9e78bc44278c5e9e3cc8dee15185e2e2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105175 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/xmlimport.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/compilerplugins/clang/xmlimport.cxx b/compilerplugins/clang/xmlimport.cxx
index 72645564a5d1..c82a8d960228 100644
--- a/compilerplugins/clang/xmlimport.cxx
+++ b/compilerplugins/clang/xmlimport.cxx
@@ -54,6 +54,10 @@ public:
return false;
if (loplugin::isSamePathname(fn, SRCDIR "/sc/source/filter/xml/xmlannoi.cxx"))
return false;
+ // this class specifically wants to prevent some endFastElement processing happening in it's superclass
+ if (loplugin::isSamePathname(fn, SRCDIR
+ "/xmloff/source/text/XMLIndexBibliographySourceContext.cxx"))
+ return false;
return true;
}