summaryrefslogtreecommitdiffstats
path: root/store/source/store.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/store.cxx')
-rw-r--r--store/source/store.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/store/source/store.cxx b/store/source/store.cxx
index c6e79a85e5a2..1b5107fc3837 100644
--- a/store/source/store.cxx
+++ b/store/source/store.cxx
@@ -48,7 +48,7 @@ public:
static store_handle_type * SAL_CALL query (void * pHandle)
{
return store::query (
- static_cast<IStoreHandle*>(pHandle),
+ static_cast<OStoreObject*>(pHandle),
static_cast<store_handle_type*>(0));
}
};
@@ -68,7 +68,7 @@ storeError SAL_CALL store_acquireHandle (
storeHandle Handle
) SAL_THROW_EXTERN_C()
{
- IStoreHandle *pHandle = static_cast<IStoreHandle*>(Handle);
+ OStoreObject *pHandle = static_cast<OStoreObject*>(Handle);
if (!pHandle)
return store_E_InvalidHandle;
@@ -83,7 +83,7 @@ storeError SAL_CALL store_releaseHandle (
storeHandle Handle
) SAL_THROW_EXTERN_C()
{
- IStoreHandle *pHandle = static_cast<IStoreHandle*>(Handle);
+ OStoreObject *pHandle = static_cast<OStoreObject*>(Handle);
if (!pHandle)
return store_E_InvalidHandle;