summaryrefslogtreecommitdiffstats
path: root/sc/inc/xmlwrap.hxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2001-02-09 19:01:04 +0000
committerNiklas Nebel <nn@openoffice.org>2001-02-09 19:01:04 +0000
commit307dab4a974d3ddde7e25f4883e9561297660dd2 (patch)
tree3d9a56d2c310b2492752e7ec586f240eda29317d /sc/inc/xmlwrap.hxx
parentadd import/export change view settings; import/export of matrix cells (diff)
downloadcore-307dab4a974d3ddde7e25f4883e9561297660dd2.tar.gz
core-307dab4a974d3ddde7e25f4883e9561297660dd2.zip
allow construction with medium or storage
Diffstat (limited to 'sc/inc/xmlwrap.hxx')
-rw-r--r--sc/inc/xmlwrap.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/sc/inc/xmlwrap.hxx b/sc/inc/xmlwrap.hxx
index 724988f8a619..30ec7509834e 100644
--- a/sc/inc/xmlwrap.hxx
+++ b/sc/inc/xmlwrap.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlwrap.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sab $ $Date: 2001-02-06 14:49:07 $
+ * last change: $Author: nn $ $Date: 2001-02-09 20:00:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -64,6 +64,7 @@
class ScDocument;
class SfxMedium;
+class SvStorage;
namespace com { namespace sun { namespace star {
namespace uno { template<class X> class Reference; }
@@ -74,13 +75,14 @@ namespace com { namespace sun { namespace star {
class ScXMLImportWrapper
{
ScDocument& rDoc;
- SfxMedium& rMedium;
+ SfxMedium* pMedium;
+ SvStorage* pStorage;
com::sun::star::uno::Reference< com::sun::star::task::XStatusIndicator> GetStatusIndicator(
com::sun::star::uno::Reference< com::sun::star::frame::XModel >& rModel);
public:
- ScXMLImportWrapper(ScDocument& rD, SfxMedium& rM);
+ ScXMLImportWrapper(ScDocument& rD, SfxMedium* pM, SvStorage* pS);
BOOL Import();
BOOL Export();
};