Fix the build of oox.
This commit is contained in:
parent
5ddafab025
commit
33059d29f9
4 changed files with 10 additions and 7 deletions
|
@ -60,13 +60,14 @@
|
|||
#include <tools/string.hxx>
|
||||
#include <vcl/cvtgrf.hxx>
|
||||
#include <unotools/fontcvt.hxx>
|
||||
#include <unotools/fontdefs.hxx>
|
||||
#include <vcl/graph.hxx>
|
||||
#include <svtools/grfmgr.hxx>
|
||||
#include <rtl/strbuf.hxx>
|
||||
#include <sfx2/app.hxx>
|
||||
#include <svl/languageoptions.hxx>
|
||||
#include <svx/escherex.hxx>
|
||||
#include <svx/svxenum.hxx>
|
||||
#include <filter/msfilter/escherex.hxx>
|
||||
#include <editeng/svxenum.hxx>
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
using namespace ::com::sun::star::uno;
|
||||
|
@ -473,7 +474,7 @@ OUString DrawingML::WriteImage( const Graphic& rGraphic )
|
|||
}
|
||||
|
||||
aData = aStream.GetData();
|
||||
nDataSize = aStream.GetSize();
|
||||
nDataSize = aStream.GetEndOfData();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -66,9 +66,9 @@
|
|||
#include <rtl/strbuf.hxx>
|
||||
#include <sfx2/app.hxx>
|
||||
#include <svl/languageoptions.hxx>
|
||||
#include <svx/escherex.hxx>
|
||||
#include <filter/msfilter/escherex.hxx>
|
||||
#include <svx/svdoashp.hxx>
|
||||
#include <svx/svxenum.hxx>
|
||||
#include <editeng/svxenum.hxx>
|
||||
#include <svx/unoapi.hxx>
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
|
|
|
@ -128,7 +128,7 @@ void VMLExport::CloseContainer()
|
|||
|
||||
UINT32 VMLExport::EnterGroup( const String& rShapeName, const Rectangle* pRect )
|
||||
{
|
||||
UINT32 nShapeId = GetShapeID();
|
||||
sal_uInt32 nShapeId = GenerateShapeId();
|
||||
|
||||
OStringBuffer aStyle( 200 );
|
||||
FastAttributeList *pAttrList = m_pSerializer->createAttrList();
|
||||
|
|
|
@ -75,7 +75,9 @@ SHL1STDLIBS= \
|
|||
$(GOODIESLIB) \
|
||||
$(SVTOOLLIB) \
|
||||
$(SVXCORELIB) \
|
||||
$(SVXMSFILTERLIB) \
|
||||
$(SVLLIB) \
|
||||
$(MSFILTERLIB) \
|
||||
$(UNOTOOLSLIB) \
|
||||
$(TOOLSLIB)
|
||||
|
||||
# link openssl, copied this bit from ucb/source/ucp/webdav/makefile.mk
|
||||
|
|
Loading…
Reference in a new issue