summaryrefslogtreecommitdiffstats
path: root/include/store/store.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/store/store.hxx')
-rw-r--r--include/store/store.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/store/store.hxx b/include/store/store.hxx
index e463a3608b45..5800169bb70b 100644
--- a/include/store/store.hxx
+++ b/include/store/store.hxx
@@ -323,15 +323,14 @@ public:
/** Open the temporary file in memory.
@see store_createMemoryFile()
*/
- inline storeError createInMemory (
- sal_uInt16 nPageSize = STORE_DEFAULT_PAGESIZE)
+ inline storeError createInMemory ()
{
if (m_hImpl)
{
(void) store_releaseHandle (m_hImpl);
m_hImpl = nullptr;
}
- return store_createMemoryFile (nPageSize, &m_hImpl);
+ return store_createMemoryFile (STORE_DEFAULT_PAGESIZE, &m_hImpl);
}
/** Close the file.