User: kz Date: 2008-05-05 15:59:46+0000 Modified: dba/dbaccess/source/ui/misc/DExport.cxx
Log: INTEGRATION: CWS dba30b (1.40.24); FILE MERGED 2008/04/15 22:13:51 fs 1.40.24.2: RESYNC: (1.40-1.41); FILE MERGED 2008/03/16 14:06:33 fs 1.40.24.1: some exception handling re-factoring File Changes: Directory: /dba/dbaccess/source/ui/misc/ ======================================== File [changed]: DExport.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/misc/DExport.cxx?r1=1.41&r2=1.42 Delta lines: +7 -4 ------------------- --- DExport.cxx 2008-04-10 15:51:47+0000 1.41 +++ DExport.cxx 2008-05-05 15:59:43+0000 1.42 @@ -107,6 +107,9 @@ #ifndef _TOOLS_DEBUG_HXX #include <tools/debug.hxx> #endif +#ifndef TOOLS_DIAGNOSE_EX_H +#include <tools/diagnose_ex.h> +#endif #ifndef INCLUDED_I18NPOOL_MSLANGID_HXX #include <i18npool/mslangid.hxx> #endif @@ -839,9 +842,9 @@ ::dbaui::showError( ::dbtools::SQLExceptionInfo( ::cppu::getCaughtException() ), &aWizard, m_xFactory ); bError = sal_True; } - catch(Exception& ) + catch( const Exception& ) { - OSL_ENSURE(sal_False, "ODatabaseExport::executeWizard: caught a generic exception!"); + DBG_UNHANDLED_EXCEPTION(); } return bError; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
