diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-03-20 11:10:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-03-20 11:10:36 +0000 |
commit | ff9e8c13fd6a0ac24928e8c94c19315baf11c0a4 (patch) | |
tree | 1f4ecb269be15f418d3d16b33e850e40ed72136e /editeng | |
parent | 15de91f8c564aae4179cfc1191005b5226beef4a (diff) |
WaE: uninit variable
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/borderline.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/items/borderline.cxx b/editeng/source/items/borderline.cxx index e429a04fc980..d6b4efc9c630 100644 --- a/editeng/source/items/borderline.cxx +++ b/editeng/source/items/borderline.cxx @@ -262,7 +262,7 @@ void SvxBorderLine::GuessLinesWidths( SvxBorderStyle nStyle, sal_uInt16 nOut, sa int i = 0, len = sizeof( aDoubleStyles ) / sizeof( SvxBorderStyle ); long nWidth = 0; - SvxBorderStyle nTestStyle; + SvxBorderStyle nTestStyle(NO_STYLE); while ( i < len && nWidth == 0 ) { nTestStyle = aDoubleStyles[i]; |