summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorVladimir Glazunov <vg@openoffice.org>2010-02-15 15:55:35 +0100
committerVladimir Glazunov <vg@openoffice.org>2010-02-15 15:55:35 +0100
commit23bddc558dda9017f6c0b3b62d99e70c2b88341c (patch)
tree6cf384d56f48714c852db981ce49de7b68a38d24 /vbahelper
parent4c5ed8017b3d4235b75e9998b4892c65dd352efa (diff)
parentea49267fb78123e468f9468fdaa3c988c1fde8ea (diff)
CWS-TOOLING: integrate CWS cmcfixes71
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbahelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vbahelper/source/vbahelper/vbahelper.cxx b/vbahelper/source/vbahelper/vbahelper.cxx
index 0b5456781a..9bb12bd445 100644
--- a/vbahelper/source/vbahelper/vbahelper.cxx
+++ b/vbahelper/source/vbahelper/vbahelper.cxx
@@ -535,7 +535,7 @@ XLRGBToOORGB( sal_Int32 nCol )
uno::Any
OORGBToXLRGB( const uno::Any& aCol )
{
- sal_Int32 nCol;
+ sal_Int32 nCol(0);
aCol >>= nCol;
nCol = OORGBToXLRGB( nCol );
return uno::makeAny( nCol );
@@ -543,7 +543,7 @@ OORGBToXLRGB( const uno::Any& aCol )
uno::Any
XLRGBToOORGB( const uno::Any& aCol )
{
- sal_Int32 nCol;
+ sal_Int32 nCol(0);
aCol >>= nCol;
nCol = XLRGBToOORGB( nCol );
return uno::makeAny( nCol );