summaryrefslogtreecommitdiff
path: root/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 /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 'test')
-rw-r--r--test/source/unoapi_property_testers.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/unoapi_property_testers.cxx b/test/source/unoapi_property_testers.cxx
index e84ab8d7e7ab..08fde5ebd5d0 100644
--- a/test/source/unoapi_property_testers.cxx
+++ b/test/source/unoapi_property_testers.cxx
@@ -40,7 +40,7 @@ void testBooleanProperty(uno::Reference<beans::XPropertySet>& xPropertySet, cons
}
void testLongProperty(uno::Reference<beans::XPropertySet>& xPropertySet, const OUString& name,
- const sal_Int32& nValue = 42)
+ const sal_Int32& nValue)
{
uno::Any aNewValue;
@@ -60,7 +60,7 @@ void testLongProperty(uno::Reference<beans::XPropertySet>& xPropertySet, const O
}
void testShortProperty(uno::Reference<beans::XPropertySet>& xPropertySet, const OUString& name,
- const sal_Int16& nValue = 42)
+ const sal_Int16& nValue)
{
uno::Any aNewValue;