summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-07-12 12:34:56 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-07-12 14:25:04 +0200
commit6a393f7843bc32b14d007ccdb41922f42afe0f3d (patch)
treed0546fcd986cd7936fee86d1d2eec261b16e498a
parent231db56d020d95e9bcf2520cb3c64235d99aa650 (diff)
pass by reference
Change-Id: I44e8f40935a19f8023bb23f53c5fb458eb28a3dc
-rw-r--r--svtools/source/contnr/DocumentInfoPreview.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/contnr/DocumentInfoPreview.cxx b/svtools/source/contnr/DocumentInfoPreview.cxx
index 5a4e154e46a9..c371f4b088dc 100644
--- a/svtools/source/contnr/DocumentInfoPreview.cxx
+++ b/svtools/source/contnr/DocumentInfoPreview.cxx
@@ -54,7 +54,7 @@ ODocumentInfoPreview::ODocumentInfoPreview(Window * pParent, WinBits nBits):
ODocumentInfoPreview::~ODocumentInfoPreview() {}
-extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeODocumentInfoPreview(Window *pParent, VclBuilder::stringmap)
+extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeODocumentInfoPreview(Window *pParent, VclBuilder::stringmap&)
{
return new ODocumentInfoPreview(pParent, WB_BORDER | WB_READONLY);
}