summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/tdoc/tdoc_stgelems.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-11-09 14:34:53 +0000
committerRüdiger Timm <rt@openoffice.org>2004-11-09 14:34:53 +0000
commit075e52c69d18bdca566032f21f662e9d14c7bd44 (patch)
tree2858d410056278aad6e24b3866fad8d359f7fbe8 /ucb/source/ucp/tdoc/tdoc_stgelems.hxx
parenta4526c44605635b3cef9e4163a15e99bf7397dff (diff)
INTEGRATION: CWS tdoc3 (1.2.38); FILE MERGED
2004/11/02 13:56:09 kso 1.2.38.1: #i36025# - Adapted to final Storage API. Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'ucb/source/ucp/tdoc/tdoc_stgelems.hxx')
-rw-r--r--ucb/source/ucp/tdoc/tdoc_stgelems.hxx13
1 files changed, 8 insertions, 5 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_stgelems.hxx b/ucb/source/ucp/tdoc/tdoc_stgelems.hxx
index 834ebdcd3cc9..58eed8e84dde 100644
--- a/ucb/source/ucp/tdoc/tdoc_stgelems.hxx
+++ b/ucb/source/ucp/tdoc/tdoc_stgelems.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tdoc_stgelems.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-05-28 15:16:58 $
+ * last change: $Author: rt $ $Date: 2004-11-09 15:34:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -96,8 +96,8 @@ public:
com::sun::star::embed::XStorage > & xParentStorage,
const rtl::OUString & rUri );
- bool isRootParentStorage() const
- { return m_bParentStorageIsRoot; }
+ bool isParentARootStorage() const
+ { return m_bParentIsRootStorage; }
com::sun::star::uno::Reference< com::sun::star::embed::XStorage >
getParentStorage() const
{ return m_xParentStorage; }
@@ -108,7 +108,7 @@ public:
private:
com::sun::star::uno::Reference<
com::sun::star::embed::XStorage > m_xParentStorage;
- bool m_bParentStorageIsRoot;
+ bool m_bParentIsRootStorage;
};
//=======================================================================
@@ -132,6 +132,8 @@ public:
com::sun::star::embed::XStorage > & xStorageToWrap );
virtual ~Storage();
+ bool isDocumentStorage() const { return m_bIsDocumentStorage; }
+
// XInterface
virtual com::sun::star::uno::Any SAL_CALL queryInterface(
const com::sun::star::uno::Type& aType )
@@ -347,6 +349,7 @@ private:
com::sun::star::lang::XComponent > m_xWrappedComponent;
com::sun::star::uno::Reference<
com::sun::star::lang::XTypeProvider > m_xWrappedTypeProv;
+ bool m_bIsDocumentStorage;
StorageElementFactory::StorageMap::iterator m_aContainerIt;