summaryrefslogtreecommitdiff
path: root/sax/source/expatwrap/sax_expat.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-08-07 18:35:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-08-07 18:35:59 +0200
commitf740673ed74b1e2daf2a65d9b167dc3a38e1dd25 (patch)
treee793727278c821c506f0dfb893ce04466bc356e4 /sax/source/expatwrap/sax_expat.cxx
parentca730eed1e61551d77fb6d788eab9214579ed4ff (diff)
Avoid incomplete type in fn sig to keep ubsan's RTTI-based checks happy
Change-Id: I2d4e4be562cc752e7545792b148d5ed0cf551f25
Diffstat (limited to 'sax/source/expatwrap/sax_expat.cxx')
-rw-r--r--sax/source/expatwrap/sax_expat.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/sax/source/expatwrap/sax_expat.cxx b/sax/source/expatwrap/sax_expat.cxx
index 9735e0788d6a..78906eb1457f 100644
--- a/sax/source/expatwrap/sax_expat.cxx
+++ b/sax/source/expatwrap/sax_expat.cxx
@@ -26,6 +26,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
+#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp>
#include <com/sun/star/xml/sax/XParser.hpp>
#include <com/sun/star/xml/sax/SAXParseException.hpp>
@@ -48,10 +49,6 @@ using namespace ::com::sun::star::io;
#include "attrlistimpl.hxx"
#include "xml2utf.hxx"
-namespace com { namespace sun { namespace star { namespace uno {
- class XComponentContext;
-} } } }
-
namespace {
// Useful macros for correct String conversion depending on the chosen expat-mode
do#46808, propogate XLinguProperties through some more codeNoel Grandin 2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák 2013-03-19automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold 2013-01-30Removed several useless macros: A2OU, A2S, C2U, C2S, OUSTR, OUSTRINGJean-Noël Rouvignac 2013-01-09resolved fdo#58503 restore awkward handling of empty locale for legacyEike Rathke 2012-11-24some more LocaleToLanguage() replacementEike Rathke 2012-10-08re-base on ALv2 code. Includes:Michael Meeks 2012-06-22.dxp files don't need executable bitsMichael Stahl 2012-06-09Remove superfluous empty lines on topThomas Arnhold 2012-05-29targetted SAL_N_ELEMENTS reversion.Michael Meeks 2012-03-21chmod -xTor Lillqvist 2012-02-18Fix typos in commentsElton Chung 2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz 2011-12-06Removed unnessecary tools/table.hxx includesMarcel Metz 2011-11-27remove include of pch header from linguisticNorbert Thiebaud 2011-11-19remove [Byte]String::EraseAllCharsCaolán McNamara 2011-11-19make workben example build againCaolán McNamara 2011-11-14Removed comphelper -> unotools processfactory.hxx duplication.Stephan Bergmann