diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-09-29 10:48:57 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-09-29 10:52:54 +0300 |
commit | 42fe8b9f11da41530a6d914397b6301a72db3800 (patch) | |
tree | 9a5fa2e7150e5b5e8012861b17dc2d0670fab9ed | |
parent | a649aac68c47e40ff518d874b3c10010fb7d18fc (diff) |
WaE: Mark SvXMLExport_Impl and SvXMLImport_Impl as SAL_DLLPRIVATE
Fixes warnings: 'SvXML*_Impl' declared with greater visibility than
the type of its field 'SvXMLExport_Impl::mpRDFaHelper'.
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/core/xmlimp.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 2777f618f5ae..54b02a41f365 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -260,7 +260,7 @@ void SAL_CALL SvXMLExportEventListener::disposing( const lang::EventObject& ) //============================================================================== -class SvXMLExport_Impl +class SAL_DLLPRIVATE SvXMLExport_Impl { public: SvXMLExport_Impl(); diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx index 1f9f87a73214..9574bd7334a8 100644 --- a/xmloff/source/core/xmlimp.cxx +++ b/xmloff/source/core/xmlimp.cxx @@ -169,7 +169,7 @@ void SAL_CALL SvXMLImportEventListener::disposing( const lang::EventObject& ) //============================================================================== -class SvXMLImport_Impl +class SAL_DLLPRIVATE SvXMLImport_Impl { public: FontToSubsFontConverter hBatsFontConv; |