diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-09-01 09:05:00 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-09-01 10:33:33 +0200 |
commit | feb463e93f8c7beb0f6abb52812ac05c4f7724c2 (patch) | |
tree | 8f436cee3342ede0d787c5b3af2b7595bbad14f2 /framework | |
parent | 4ee81b9db3df0c36617fd7d76a9a883c8b6eb764 (diff) |
xmlsecurity: fix inconsistent param naming in interface/implementation
Don't talk about enumeration when it's a number.
Change-Id: I756063534b38478c382eaf72829091a4e27a6c4f
Reviewed-on: https://gerrit.libreoffice.org/41779
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/qa/cppunit/dispatchtest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qa/cppunit/dispatchtest.cxx b/framework/qa/cppunit/dispatchtest.cxx index 040313dad31a..a09bdb99b0ed 100644 --- a/framework/qa/cppunit/dispatchtest.cxx +++ b/framework/qa/cppunit/dispatchtest.cxx @@ -54,7 +54,7 @@ public: virtual uno::Reference<frame::XDispatchProvider> SAL_CALL getSlaveDispatchProvider() override; // frame::XDispatchProvider - virtual uno::Sequence<uno::Reference<frame::XDispatch>> SAL_CALL queryDispatches(const uno::Sequence<frame::DispatchDescriptor>& xRequests) override; + virtual uno::Sequence<uno::Reference<frame::XDispatch>> SAL_CALL queryDispatches(const uno::Sequence<frame::DispatchDescriptor>& rRequests) override; virtual uno::Reference<frame::XDispatch> SAL_CALL queryDispatch(const util::URL& rURL, const OUString& rTargetFrameName, sal_Int32 SearchFlags) override; }; |