Tag: cws_dev300_dba30d
User: fs      
Date: 2008-05-29 11:31:50+0000
Modified:
   dba/dbaccess/source/ui/browser/brwctrlr.cxx
   dba/dbaccess/source/ui/browser/brwview.cxx

Log:
 during #i80943#: refactoring: IController now passed around as reference, not 
as pointer

File Changes:

Directory: /dba/dbaccess/source/ui/browser/
===========================================

File [changed]: brwctrlr.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/browser/brwctrlr.cxx?r1=1.107&r2=1.107.10.1
Delta lines:  +3 -3
-------------------
--- brwctrlr.cxx        2008-05-05 15:52:38+0000        1.107
+++ brwctrlr.cxx        2008-05-29 11:31:47+0000        1.107.10.1
@@ -7,7 +7,7 @@
  * OpenOffice.org - a multi-platform office productivity suite
  *
  * $RCSfile: brwctrlr.cxx,v $
- * $Revision: 1.107 $
+ * $Revision: 1.107.10.1 $
  *
  * This file is part of OpenOffice.org.
  *
@@ -631,7 +631,7 @@
 
        // ---------------
        // create the view
-       m_pView = new UnoDataBrowserView(pParent,this,getORB());
+       m_pView = new UnoDataBrowserView( pParent, *this, getORB() );
        if (!getBrowserView())
                return sal_False;
 

File [changed]: brwview.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/browser/brwview.cxx?r1=1.28&r2=1.28.30.1
Delta lines:  +4 -4
-------------------
--- brwview.cxx 2008-04-10 14:04:39+0000        1.28
+++ brwview.cxx 2008-05-29 11:31:47+0000        1.28.30.1
@@ -7,7 +7,7 @@
  * OpenOffice.org - a multi-platform office productivity suite
  *
  * $RCSfile: brwview.cxx,v $
- * $Revision: 1.28 $
+ * $Revision: 1.28.30.1 $
  *
  * This file is part of OpenOffice.org.
  *
@@ -108,9 +108,9 @@
 DBG_NAME(UnoDataBrowserView)
 // -------------------------------------------------------------------------
 UnoDataBrowserView::UnoDataBrowserView(        Window* pParent, 
-                                                                               
IController* _pController,
+                                                                               
IController& _rController,
                                                                                
const Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rFactory)
-       :ODataView(pParent,_pController,_rFactory)
+       :ODataView(pParent,_rController,_rFactory)
        ,m_pTreeView(NULL)
        ,m_pSplitter(NULL)
        ,m_pVclControl(NULL)




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to