summaryrefslogtreecommitdiff
path: root/include/store/store.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/store/store.hxx')
-rw-r--r--include/store/store.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/store/store.hxx b/include/store/store.hxx
index 672b2196dc5e..012afd1ab9b2 100644
--- a/include/store/store.hxx
+++ b/include/store/store.hxx
@@ -299,17 +299,16 @@ public:
/** Open the file.
@see store_openFile()
*/
- inline storeError create (
+ inline storeError create(
rtl::OUString const & rFilename,
- storeAccessMode eAccessMode,
- sal_uInt16 nPageSize = STORE_DEFAULT_PAGESIZE)
+ storeAccessMode eAccessMode )
{
if (m_hImpl)
{
(void) store_releaseHandle (m_hImpl);
m_hImpl = nullptr;
}
- return store_openFile (rFilename.pData, eAccessMode, nPageSize, &m_hImpl);
+ return store_openFile (rFilename.pData, eAccessMode, STORE_DEFAULT_PAGESIZE, &m_hImpl);
}
/** Open the temporary file in memory.