[Libreoffice-commits] core.git: sc/source

Stephan Bergmann sbergman at redhat.com
Tue Oct 1 09:28:52 PDT 2013


 sc/source/ui/dbgui/consdlg.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit ffa4798d1f9b1c94278b180482b2e0ef7f6c1481
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Oct 1 18:28:25 2013 +0200

    -Werror,-Wuninitialized
    
    Change-Id: Ibb71a19867546d212b1f6fcbea3a274556b4f18e

diff --git a/sc/source/ui/dbgui/consdlg.cxx b/sc/source/ui/dbgui/consdlg.cxx
index 23e2b23..8094c1c 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");


More information about the Libreoffice-commits mailing list