diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 11:01:39 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 11:01:39 +0000 |
commit | 84a03f47e1245b2bd554106c154fc18d6146960a (patch) | |
tree | f6f06e2aa214448e0e0460ed1706408f780dea84 /svx/source/customshapes/EnhancedCustomShape2d.cxx | |
parent | 6e5afde78f67492d72562c8d45f224e7e48cfbd1 (diff) |
INTEGRATION: CWS sb59 (1.19.14); FILE MERGED
2006/09/01 08:01:21 sb 1.19.14.1: #i67535# Made code warning-free (GCC 4.0.3).
Diffstat (limited to 'svx/source/customshapes/EnhancedCustomShape2d.cxx')
-rw-r--r-- | svx/source/customshapes/EnhancedCustomShape2d.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShape2d.cxx b/svx/source/customshapes/EnhancedCustomShape2d.cxx index bc912dc87f11..ec91a631cc53 100644 --- a/svx/source/customshapes/EnhancedCustomShape2d.cxx +++ b/svx/source/customshapes/EnhancedCustomShape2d.cxx @@ -4,9 +4,9 @@ * * $RCSfile: EnhancedCustomShape2d.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: obo $ $Date: 2006-09-17 04:06:11 $ + * last change: $Author: obo $ $Date: 2006-10-12 12:01:39 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -558,7 +558,7 @@ sal_Bool EnhancedCustomShape2d::ConvertSequenceToEnhancedCustomShape2dHandle( } else if ( rPropVal.Name.equals( sMirroredX ) ) { - sal_Bool bMirroredX; + sal_Bool bMirroredX = sal_Bool(); if ( rPropVal.Value >>= bMirroredX ) { if ( bMirroredX ) @@ -567,7 +567,7 @@ sal_Bool EnhancedCustomShape2d::ConvertSequenceToEnhancedCustomShape2dHandle( } else if ( rPropVal.Name.equals( sMirroredY ) ) { - sal_Bool bMirroredY; + sal_Bool bMirroredY = sal_Bool(); if ( rPropVal.Value >>= bMirroredY ) { if ( bMirroredY ) @@ -576,7 +576,7 @@ sal_Bool EnhancedCustomShape2d::ConvertSequenceToEnhancedCustomShape2dHandle( } else if ( rPropVal.Name.equals( sSwitched ) ) { - sal_Bool bSwitched; + sal_Bool bSwitched = sal_Bool(); if ( rPropVal.Value >>= bSwitched ) { if ( bSwitched ) |