INTEGRATION: CWS dba30d (1.10.30); FILE MERGED

2008/05/29 11:30:22 fs 1.10.30.1: during #i80943#: refactoring: IController now passed around as reference, not as pointer
This commit is contained in:
Kurt Zenker 2008-06-25 11:56:20 +00:00
parent d0292710b7
commit 15771c491b

View file

@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: queryview.cxx,v $
* $Revision: 1.10 $
* $Revision: 1.11 $
*
* This file is part of OpenOffice.org.
*
@ -46,8 +46,8 @@ using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
DBG_NAME(OQueryView)
// -------------------------------------------------------------------------
OQueryView::OQueryView(Window* _pParent, OQueryController* _pController,const Reference< XMultiServiceFactory >& _rFactory)
:OJoinDesignView(_pParent,_pController,_rFactory)
OQueryView::OQueryView(Window* _pParent, OQueryController& _rController,const Reference< XMultiServiceFactory >& _rFactory)
:OJoinDesignView( _pParent, _rController, _rFactory )
{
DBG_CTOR(OQueryView,NULL);