diff options
-rw-r--r-- | xmloff/Package_inc.mk | 1 | ||||
-rw-r--r-- | xmloff/inc/xmloff/animationexport.hxx (renamed from xmloff/inc/animationexport.hxx) | 10 | ||||
-rw-r--r-- | xmloff/source/draw/animationexport.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/sdxmlexp.cxx | 2 |
4 files changed, 10 insertions, 5 deletions
diff --git a/xmloff/Package_inc.mk b/xmloff/Package_inc.mk index 6fc737c69f4c..3bcdc39367bf 100644 --- a/xmloff/Package_inc.mk +++ b/xmloff/Package_inc.mk @@ -67,6 +67,7 @@ $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/XMLTextShapeImportHelper $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/XMLTextShapeImportHelper.hxx,xmloff/XMLTextShapeImportHelper.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/XMLTextShapeStyleContext.hxx,xmloff/XMLTextShapeStyleContext.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/XMLTextTableContext.hxx,xmloff/XMLTextTableContext.hxx)) +$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/animationexport.hxx,xmloff/animationexport.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/animexp.hxx,xmloff/animexp.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/attrlist.hxx,xmloff/attrlist.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/contextid.hxx,xmloff/contextid.hxx)) diff --git a/xmloff/inc/animationexport.hxx b/xmloff/inc/xmloff/animationexport.hxx index d14f74ad5d0a..ec96ff7cdca8 100644 --- a/xmloff/inc/animationexport.hxx +++ b/xmloff/inc/xmloff/animationexport.hxx @@ -29,6 +29,10 @@ #ifndef _XMLOFF_ANIMATIONEXPORT_HXX #define _XMLOFF_ANIMATIONEXPORT_HXX +#include "sal/config.h" +#include "xmloff/dllapi.h" +#include "sal/types.h" + #include <com/sun/star/animations/XAnimationNode.hpp> #include <com/sun/star/beans/XPropertySet.hpp> #include <xmloff/uniref.hxx> @@ -39,9 +43,9 @@ namespace xmloff { class AnimationsExporterImpl; -class AnimationsExporter : public UniRefBase +class XMLOFF_DLLPUBLIC AnimationsExporter : public UniRefBase { - AnimationsExporterImpl* mpImpl; + AnimationsExporterImpl* mpImpl; public: AnimationsExporter( SvXMLExport& rExport, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xPageProps ); @@ -53,6 +57,6 @@ public: } -#endif // _XMLOFF_ANIMATIONEXPORT_HXX +#endif // _XMLOFF_ANIMATIONEXPORT_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmloff/source/draw/animationexport.cxx b/xmloff/source/draw/animationexport.cxx index c24a7858e931..b66ec8873993 100644 --- a/xmloff/source/draw/animationexport.cxx +++ b/xmloff/source/draw/animationexport.cxx @@ -76,7 +76,7 @@ #include <xmloff/shapeexport.hxx> #include "animations.hxx" -#include "animationexport.hxx" +#include <xmloff/animationexport.hxx> using ::rtl::OUString; using ::rtl::OUStringBuffer; diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx index e8f727b51d73..dc6bc8fe73a6 100644 --- a/xmloff/source/draw/sdxmlexp.cxx +++ b/xmloff/source/draw/sdxmlexp.cxx @@ -78,7 +78,7 @@ #include "XMLNumberStylesExport.hxx" #include <tools/string.hxx> -#include "animationexport.hxx" +#include <xmloff/animationexport.hxx> #include <com/sun/star/document/XDocumentProperties.hpp> #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> |