summaryrefslogtreecommitdiff
path: root/include/comphelper/dispatchcommand.hxx
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 /include/comphelper/dispatchcommand.hxx
parent017f250764ec7b4ecb82ac19f5b3f68cadf1bf56 (diff)
comphelper::dispatchCommand: allow passing command arguments
Change-Id: I6464c5d1a46fadac2510700101f3c8cc29dd7995
Diffstat (limited to 'include/comphelper/dispatchcommand.hxx')
-rw-r--r--include/comphelper/dispatchcommand.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/comphelper/dispatchcommand.hxx b/include/comphelper/dispatchcommand.hxx
index 7289dd7e7c58..58aa0b940f4e 100644
--- a/include/comphelper/dispatchcommand.hxx
+++ b/include/comphelper/dispatchcommand.hxx
@@ -12,6 +12,8 @@
#include <comphelper/comphelperdllapi.h>
#include <rtl/ustring.hxx>
+#include <com/sun/star/uno/Sequence.hxx>
+#include <com/sun/star/beans/PropertyValue.hpp>
namespace comphelper
{
@@ -22,7 +24,7 @@ namespace comphelper
@return true on success.
*/
-COMPHELPER_DLLPUBLIC bool dispatchCommand(const OUString& rCommand);
+COMPHELPER_DLLPUBLIC bool dispatchCommand(const OUString& rCommand, const css::uno::Sequence<css::beans::PropertyValue>& rArguments);
}