summaryrefslogtreecommitdiff
path: root/sc/source/ui/formdlg
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-01-29 15:44:51 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-01-31 11:45:54 +0000
commit24af8af98edd3808d96b00b51648c1bb55da22eb (patch)
tree6a4c9ba06613fc8fc41f94af037ca3507e114756 /sc/source/ui/formdlg
parent682c07cc3f023a2a0f036f48700fca16b6b62c19 (diff)
SfxChildWindow is always null
Change-Id: I0a17066b8571cb40f53921000b7eeb4cdf0c9527
Diffstat (limited to 'sc/source/ui/formdlg')
-rw-r--r--sc/source/ui/formdlg/dwfunctr.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/source/ui/formdlg/dwfunctr.cxx b/sc/source/ui/formdlg/dwfunctr.cxx
index d86cc5021612..8e1686f62da3 100644
--- a/sc/source/ui/formdlg/dwfunctr.cxx
+++ b/sc/source/ui/formdlg/dwfunctr.cxx
@@ -53,10 +53,8 @@
#*
#************************************************************************/
-ScFunctionDockWin::ScFunctionDockWin( SfxBindings* pBindingsP,
- SfxChildWindow *pCW, vcl::Window* pParent, const ResId& rResId ) :
-
- SfxDockingWindow( pBindingsP, pCW, pParent, rResId ),
+ScFunctionDockWin::ScFunctionDockWin( SfxBindings* pBindingsP, vcl::Window* pParent, const ResId& rResId ) :
+ SfxDockingWindow( pBindingsP, nullptr, pParent, rResId ),
aPrivatSplit ( VclPtr<ScPrivatSplit>::Create( this, ResId( FT_SPLIT, *rResId.GetResMgr() ) ) ),
aCatBox ( VclPtr<ListBox>::Create( this, ResId( CB_CAT, *rResId.GetResMgr() ) ) ),
aFuncList ( VclPtr<ListBox>::Create( this, ResId( LB_FUNC, *rResId.GetResMgr() ) ) ),