fixed temporary binary export
This commit is contained in:
parent
dbf4ae631c
commit
c62030f185
2 changed files with 10 additions and 9 deletions
|
@ -2,9 +2,9 @@
|
||||||
#
|
#
|
||||||
# $RCSfile: makefile.mk,v $
|
# $RCSfile: makefile.mk,v $
|
||||||
#
|
#
|
||||||
# $Revision: 1.1.1.1 $
|
# $Revision: 1.2 $
|
||||||
#
|
#
|
||||||
# last change: $Author: hr $ $Date: 2000-09-18 16:48:45 $
|
# last change: $Author: cl $ $Date: 2000-11-08 12:41:52 $
|
||||||
#
|
#
|
||||||
# The Contents of this file are made available subject to the terms of
|
# The Contents of this file are made available subject to the terms of
|
||||||
# either of the following licenses
|
# either of the following licenses
|
||||||
|
@ -75,6 +75,7 @@ ENABLE_EXCEPTIONS=TRUE
|
||||||
# --- Files --------------------------------------------------------
|
# --- Files --------------------------------------------------------
|
||||||
|
|
||||||
SLOFILES = \
|
SLOFILES = \
|
||||||
|
$(SLO)$/pkgurl.obj \
|
||||||
$(SLO)$/sdxmlwrp.obj
|
$(SLO)$/sdxmlwrp.obj
|
||||||
|
|
||||||
# --- Targets --------------------------------------------------------------
|
# --- Targets --------------------------------------------------------------
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
*
|
*
|
||||||
* $RCSfile: sdxmlwrp.cxx,v $
|
* $RCSfile: sdxmlwrp.cxx,v $
|
||||||
*
|
*
|
||||||
* $Revision: 1.2 $
|
* $Revision: 1.3 $
|
||||||
*
|
*
|
||||||
* last change: $Author: cl $ $Date: 2000-10-24 11:00:39 $
|
* last change: $Author: cl $ $Date: 2000-11-08 12:41:52 $
|
||||||
*
|
*
|
||||||
* The Contents of this file are made available subject to the terms of
|
* The Contents of this file are made available subject to the terms of
|
||||||
* either of the following licenses
|
* either of the following licenses
|
||||||
|
@ -101,7 +101,7 @@
|
||||||
#include <unotools/processfactory.hxx>
|
#include <unotools/processfactory.hxx>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <xmloff/pkgurl.hxx>
|
#include "pkgurl.hxx"
|
||||||
|
|
||||||
using namespace com::sun::star;
|
using namespace com::sun::star;
|
||||||
using namespace rtl;
|
using namespace rtl;
|
||||||
|
@ -314,10 +314,10 @@ BOOL SdXMLWrapper::Export()
|
||||||
|
|
||||||
uno::Reference<xml::sax::XDocumentHandler> xHandler(xWriter, uno::UNO_QUERY);
|
uno::Reference<xml::sax::XDocumentHandler> xHandler(xWriter, uno::UNO_QUERY);
|
||||||
OUString sFileName = mrMedium.GetName();
|
OUString sFileName = mrMedium.GetName();
|
||||||
// uno::Reference<xml::sax::XDocumentHandler> xPacker =
|
uno::Reference<xml::sax::XDocumentHandler> xPacker =
|
||||||
// new URLPacker(sFileName, xHandler, sal_False, sal_True);
|
new URLPacker(sFileName, xHandler, sal_False, sal_True);
|
||||||
// SdXMLExport aExp(mxLocalModel, sFileName, xPacker, mbShowProgress, IsDraw());
|
SdXMLExport aExp(mxLocalModel, sFileName, xPacker, mbShowProgress, IsDraw());
|
||||||
SdXMLExport aExp(mxLocalModel, sFileName, xHandler, mbShowProgress, IsDraw());
|
// SdXMLExport aExp(mxLocalModel, sFileName, xHandler, mbShowProgress, IsDraw());
|
||||||
|
|
||||||
// give string descriptor as parameter for doc type
|
// give string descriptor as parameter for doc type
|
||||||
BOOL bRet = (0 == aExp.exportDoc( IsDraw() ? sXML_drawing : sXML_impress ));
|
BOOL bRet = (0 == aExp.exportDoc( IsDraw() ? sXML_drawing : sXML_impress ));
|
||||||
|
|
Loading…
Reference in a new issue