diff options
-rw-r--r-- | sw/source/filter/xml/xmltexte.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/xml/xmltexte.cxx b/sw/source/filter/xml/xmltexte.cxx index 9b184afd8220..d2e26177a6ac 100644 --- a/sw/source/filter/xml/xmltexte.cxx +++ b/sw/source/filter/xml/xmltexte.cxx @@ -296,7 +296,7 @@ static void lcl_addFrameProperties( aAny = xSet->getPropertyValue("FrameName"); aAny >>= aName; - bool bIsAutoScroll = false, bIsScrollingMode; + bool bIsAutoScroll = false, bIsScrollingMode = false; aAny = xSet->getPropertyValue("FrameIsAutoScroll"); aAny >>= bIsAutoScroll; if ( !bIsAutoScroll ) @@ -305,7 +305,7 @@ static void lcl_addFrameProperties( aAny >>= bIsScrollingMode; } - bool bIsBorderSet, bIsAutoBorder = false; + bool bIsBorderSet = false, bIsAutoBorder = false; aAny = xSet->getPropertyValue("FrameIsAutoBorder"); aAny >>= bIsAutoBorder; if ( !bIsAutoBorder ) |