diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-06-25 11:51:45 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-06-25 11:51:45 +0000 |
commit | ef900e20e14a2b4d693a55c2e2d2b9b2e9a43992 (patch) | |
tree | cd19021e60df5a929ad37659782bbba61cde14db /dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx | |
parent | 61ad099ad0d39436dabad8c002d5e2e6e2221858 (diff) |
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
Diffstat (limited to 'dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx')
-rw-r--r-- | dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx b/dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx index 603181f6b6c0..ecabea880895 100644 --- a/dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx +++ b/dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx @@ -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) |