summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-04-22 12:22:06 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-04-22 14:11:47 +0200
commiteaf41045822732653a0af91ac0faa28fca7f0894 (patch)
treee28628a836b7f2bf55f3ab69032cbdf5ae67f293 /desktop
parent017f250764ec7b4ecb82ac19f5b3f68cadf1bf56 (diff)
comphelper::dispatchCommand: allow passing command arguments
Change-Id: I6464c5d1a46fadac2510700101f3c8cc29dd7995
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/lib/init.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index a1162dfe21bc..c1237ac1eca3 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -705,7 +705,7 @@ static void doc_postUnoCommand(LibreOfficeKitDocument* /*pThis*/, const char* pC
{
OUString aCommand(pCommand, strlen(pCommand), RTL_TEXTENCODING_UTF8);
- if (!comphelper::dispatchCommand(aCommand))
+ if (!comphelper::dispatchCommand(aCommand, uno::Sequence<beans::PropertyValue>()))
{
gImpl->maLastExceptionMsg = "Failed to dispatch the .uno: command";
}