diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-01 16:40:08 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-01 17:19:51 +0100 |
commit | d5e89e0573bb92819c20b808b07347d57f6e6a0d (patch) | |
tree | 5625395fa2f75730a38bf8791695511fdc07e7b6 /chart2 | |
parent | df1df2be74805a9106a3d67a322bc63cdf5107b8 (diff) |
WaE: -Werror=maybe-uninitialized
Change-Id: I0b973088a9d14dbe3eccb0c002aab5bb861f777d
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/qa/extras/chart2import.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/qa/extras/chart2import.cxx b/chart2/qa/extras/chart2import.cxx index c30f201db7ed..7634a959111b 100644 --- a/chart2/qa/extras/chart2import.cxx +++ b/chart2/qa/extras/chart2import.cxx @@ -168,7 +168,7 @@ void Chart2ImportTest::testErrorBarFormatting() xPropSet->getPropertyValue("ErrorBarY") >>= xErrorBarYProps; CPPUNIT_ASSERT(xErrorBarYProps.is()); - util::Color aColor; + util::Color aColor(0); xErrorBarYProps->getPropertyValue("LineColor") >>= aColor; sal_uInt32 nColorValue = aColor; CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xff3333), nColorValue); |