diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-19 15:17:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-19 19:16:32 +0100 |
commit | 8a241542a4b2ce76a8ea25d971f9937bbe66c6dd (patch) | |
tree | 8adbb7efc8970541117e464d93bff1f0d5f64fb9 | |
parent | ec2c07b8b7e9c949180ed1145ae112826696193a (diff) |
CID#1103761 uninit member
Change-Id: I4212adb9c0cb8e1693df8725801188bc2154fffe
-rw-r--r-- | sc/source/ui/unoobj/datauno.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/datauno.cxx b/sc/source/ui/unoobj/datauno.cxx index 594561b3f62f..152246706cb6 100644 --- a/sc/source/ui/unoobj/datauno.cxx +++ b/sc/source/ui/unoobj/datauno.cxx @@ -1661,7 +1661,8 @@ ScDatabaseRangeObj::ScDatabaseRangeObj(ScDocShell* pDocSh, const OUString& rNm) pDocShell( pDocSh ), aName( rNm ), aPropSet( lcl_GetDBRangePropertyMap() ), - bIsUnnamed(false) + bIsUnnamed(false), + aTab( 0 ) { pDocShell->GetDocument()->AddUnoObject(*this); } |