diff options
-rw-r--r-- | test/source/unoapi_property_testers.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/source/unoapi_property_testers.cxx b/test/source/unoapi_property_testers.cxx index f261c4ce3736..c0987d8c0ff8 100644 --- a/test/source/unoapi_property_testers.cxx +++ b/test/source/unoapi_property_testers.cxx @@ -74,7 +74,7 @@ void testDoubleProperty(uno::Reference<beans::XPropertySet> const& xPropertySet, uno::Any aNewValue; double dPropertyGet; - double dPropertySet; + double dPropertySet = {}; OString msgGet = "Unable to get PropertyValue: " + OUStringToOString(name, RTL_TEXTENCODING_UTF8); @@ -93,8 +93,8 @@ void testDoubleReadonlyProperty(uno::Reference<beans::XPropertySet> const& xProp { uno::Any aNewValue; - double dPropertyGet; - double dPropertySet; + double dPropertyGet = {}; + double dPropertySet = {}; OString msgGet = "Unable to get PropertyValue: " + OUStringToOString(name, RTL_TEXTENCODING_UTF8); |