User: kz Date: 2008-06-25 12:39:44+0000 Modified: dba/dbaccess/source/ui/browser/brwctrlr.cxx
Log: INTEGRATION: CWS dba30d (1.107.10); FILE MERGED 2008/06/01 20:55:57 fs 1.107.10.2: #i80943# Execute: default-call the base class, it has a default handling for 'user-defined' features now 2008/05/29 11:31:47 fs 1.107.10.1: 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.108 Delta lines: +6 -2 ------------------- --- brwctrlr.cxx 2008-05-05 15:52:38+0000 1.107 +++ brwctrlr.cxx 2008-06-25 12:39:41+0000 1.108 @@ -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; @@ -1792,12 +1792,16 @@ } //------------------------------------------------------------------------------ -void SbaXDataBrowserController::Execute(sal_uInt16 nId, const Sequence< PropertyValue >& /*aArgs*/) +void SbaXDataBrowserController::Execute(sal_uInt16 nId, const Sequence< PropertyValue >& _rArgs) { sal_Bool bSortUp = sal_True; switch (nId) { + default: + SbaXDataBrowserController_Base::Execute( nId, _rArgs ); + return; + case ID_BROWSER_INSERT_ROW: try { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
