diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-20 16:00:53 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-21 11:59:11 +0200 |
commit | b32658e7c492b33c15c738f6dd365b921f29dbc4 (patch) | |
tree | ca167a09e39bb45c1f0bf9f3e78d18bf576dfbc2 /sc | |
parent | 628dbbc99e0841c84a046eda572c35b337c5c1bd (diff) |
cid#708091 Uninitialized pointer field
Change-Id: Ibc068d4a077d3715f4f8c28d20f53167686cbbee
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/miscdlgs/anyrefdg.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/miscdlgs/anyrefdg.cxx b/sc/source/ui/miscdlgs/anyrefdg.cxx index 0ed8c672ba18..2dcb9cf10f3e 100644 --- a/sc/source/ui/miscdlgs/anyrefdg.cxx +++ b/sc/source/ui/miscdlgs/anyrefdg.cxx @@ -48,9 +48,11 @@ ScFormulaReferenceHelper::ScFormulaReferenceHelper(IAnyRefDialog* _pDlg,SfxBindings* _pBindings) : m_pDlg(_pDlg) , pRefEdit (NULL) + , pRefBtn (NULL) , m_pWindow(NULL) , m_pBindings(_pBindings) , pAccel( NULL ) + , m_nOldBorderWidth (0) , nRefTab(0) , mnOldEditWidthReq( -1 ) , mpOldEditParent( NULL ) |