summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2018-03-20 07:05:53 +0000
committerJens Carl <j.carl43@gmx.de>2018-03-20 16:46:18 +0100
commitea5eb69b65a3e27bfab9cd3f220eaeced159be39 (patch)
tree5164d134cab9f0c1092da5b52628bcc240b45e38 /include/test
parent44bf46c1bb9ba884e2ed2042ef995f198460cc28 (diff)
Fix error with default arguments
Change-Id: Id645d43ad63b7d91d3c47898c22594dc58333cd2 Reviewed-on: https://gerrit.libreoffice.org/51622 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/unoapi_property_testers.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/test/unoapi_property_testers.hxx b/include/test/unoapi_property_testers.hxx
index c0c7cc86dd70..369ab586d366 100644
--- a/include/test/unoapi_property_testers.hxx
+++ b/include/test/unoapi_property_testers.hxx
@@ -34,7 +34,7 @@ void OOO_DLLPUBLIC_TEST testBooleanProperty(
*/
void OOO_DLLPUBLIC_TEST
testLongProperty(css::uno::Reference<css::beans::XPropertySet>& xPropertySet, const OUString& name,
- const sal_Int32& nValue);
+ const sal_Int32& nValue = 42);
/** @brief Tester for property type 'short' of a @see com::sun::star::beans::XPropertySet.
*
@@ -44,7 +44,7 @@ testLongProperty(css::uno::Reference<css::beans::XPropertySet>& xPropertySet, co
*/
void OOO_DLLPUBLIC_TEST
testShortProperty(css::uno::Reference<css::beans::XPropertySet>& xPropertySet, const OUString& name,
- const sal_Int16& nValue);
+ const sal_Int16& nValue = 42);
/** @brief Tester for property type 'string' of a @see com::sun::star::beans::XPropertySet.
*