INTEGRATION: CWS dba30d (1.12.30); FILE MERGED

2008/05/29 11:30:21 fs 1.12.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:51:45 +00:00
parent 61ad099ad0
commit ef900e20e1
2 changed files with 5 additions and 4 deletions

View file

@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ConnectionLineAccess.cxx,v $
* $Revision: 1.12 $
* $Revision: 1.13 $
*
* This file is part of OpenOffice.org.
*
@ -260,7 +260,8 @@ namespace dbaui
// -----------------------------------------------------------------------------
sal_Bool OConnectionLineAccess::isEditable() const
{
return m_pLine ? !m_pLine->GetParent()->getDesignView()->getController()->isReadOnly() : sal_False;
return m_pLine ? !m_pLine->GetParent()->getDesignView()->getController().isReadOnly() : sal_False;
}
// -----------------------------------------------------------------------------
Reference< XAccessibleContext > SAL_CALL OConnectionLineAccess::getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException)

View file

@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: JAccess.cxx,v $
* $Revision: 1.12 $
* $Revision: 1.13 $
*
* This file is part of OpenOffice.org.
*
@ -121,7 +121,7 @@ namespace dbaui
// -----------------------------------------------------------------------------
sal_Bool OJoinDesignViewAccess::isEditable() const
{
return m_pTableView && !m_pTableView->getDesignView()->getController()->isReadOnly();
return m_pTableView && !m_pTableView->getDesignView()->getController().isReadOnly();
}
// -----------------------------------------------------------------------------
sal_Int16 SAL_CALL OJoinDesignViewAccess::getAccessibleRole( ) throw (RuntimeException)