summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-01 18:28:25 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-01 18:28:25 +0200
commitffa4798d1f9b1c94278b180482b2e0ef7f6c1481 (patch)
treebd0f0c6398f1035f53f0972b177af1e912f73129 /sc/source
parent7c358450e389d682657be283026403fb6e8931ba (diff)
-Werror,-Wuninitialized
Change-Id: Ibb71a19867546d212b1f6fcbea3a274556b4f18e
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/dbgui/consdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/dbgui/consdlg.cxx b/sc/source/ui/dbgui/consdlg.cxx
index 23e2b23c381d..8094c1cf5ac1 100644
--- a/sc/source/ui/dbgui/consdlg.cxx
+++ b/sc/source/ui/dbgui/consdlg.cxx
@@ -82,9 +82,7 @@ ScConsolidateDlg::ScConsolidateDlg( SfxBindings* pB, SfxChildWindow* pCW, Window
pRangeUtil ( new ScRangeUtil ),
pAreaData ( NULL ),
nAreaDataCount ( 0 ),
- nWhichCons ( rArgSet.GetPool()->GetWhich( SID_CONSOLIDATE ) ),
-
- pRefInputEdit ( pEdDataArea )
+ nWhichCons ( rArgSet.GetPool()->GetWhich( SID_CONSOLIDATE ) )
{
get(pLbFunc,"func");
get(pLbConsAreas,"consareas");
@@ -93,6 +91,8 @@ ScConsolidateDlg::ScConsolidateDlg( SfxBindings* pB, SfxChildWindow* pCW, Window
get(pEdDataArea,"eddataarea");
get(pRbDataArea,"rbdataarea");
+ pRefInputEdit = pEdDataArea;
+
get(pLbDestArea,"lbdestarea");
get(pEdDestArea,"eddestarea");
get(pRbDestArea,"rbdestarea");