diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-22 12:22:06 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-22 14:11:47 +0200 |
commit | eaf41045822732653a0af91ac0faa28fca7f0894 (patch) | |
tree | e28628a836b7f2bf55f3ab69032cbdf5ae67f293 /vcl | |
parent | 017f250764ec7b4ecb82ac19f5b3f68cadf1bf56 (diff) |
comphelper::dispatchCommand: allow passing command arguments
Change-Id: I6464c5d1a46fadac2510700101f3c8cc29dd7995
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/button.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx index 1e6c2e5fcd22..30e111a674d1 100644 --- a/vcl/source/control/button.cxx +++ b/vcl/source/control/button.cxx @@ -599,7 +599,7 @@ sal_IntPtr Button::dispatchCommandHandler(void *, void *pCaller) if (pButton == NULL) return 0; - if (!comphelper::dispatchCommand(pButton->maCommand)) + if (!comphelper::dispatchCommand(pButton->maCommand, uno::Sequence<beans::PropertyValue>())) return 0; return 1; |