diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-05-10 09:16:36 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-05-10 09:16:36 +0000 |
commit | 74e85b3ef522b53f9a7593b3b86d882157fcd379 (patch) | |
tree | 9ef6f1d211241e2798bafd0adcbabcc7013d0e69 /dbaccess/source | |
parent | de723721286249d3c8d911c6db5602944a2f3349 (diff) |
INTEGRATION: CWS dba23a (1.20.58); FILE MERGED
2007/03/08 09:33:02 fs 1.20.58.2: #i73084# better error handling
2007/02/22 09:05:50 fs 1.20.58.1: Issue number: i74731
Submitted by: jnavrati@openoffice.org
Reviewed by: frank.schoenheit@sun.com
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/ui/app/AppControllerDnD.cxx | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/dbaccess/source/ui/app/AppControllerDnD.cxx b/dbaccess/source/ui/app/AppControllerDnD.cxx index 46eca49ec1bf..5ba7a29aca71 100644 --- a/dbaccess/source/ui/app/AppControllerDnD.cxx +++ b/dbaccess/source/ui/app/AppControllerDnD.cxx @@ -4,9 +4,9 @@ * * $RCSfile: AppControllerDnD.cxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.21 $ * - * last change: $Author: ihi $ $Date: 2006-10-18 13:29:59 $ + * last change: $Author: kz $ $Date: 2007-05-10 10:16:36 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -516,11 +516,6 @@ sal_Bool OApplicationController::isConnectionReadOnly() const return bIsConnectionReadOnly; } // ----------------------------------------------------------------------------- -sal_Bool OApplicationController::isRelationDesignAllowed() const -{ - return sal_True; -} -// ----------------------------------------------------------------------------- Reference< XNameAccess > OApplicationController::getElements(ElementType _eType) { OSL_ENSURE(getContainer(),"View is NULL! -> GPF"); @@ -887,7 +882,7 @@ sal_Bool OApplicationController::paste( ElementType _eType,const ::svx::ODataAcc catch(const SQLException&) { showError( SQLExceptionInfo( ::cppu::getCaughtException() ) ); } catch(const Exception& ) { - DBG_ERROR("OApplicationController::paste: caught a strange exception!"); + DBG_UNHANDLED_EXCEPTION(); } return sal_False; } |