User: kz Date: 2008-05-05 16:00:23+0000 Modified: dba/dbaccess/source/ui/misc/TokenWriter.cxx
Log: INTEGRATION: CWS dba30b (1.36.12); FILE MERGED 2008/04/15 22:13:57 fs 1.36.12.2: RESYNC: (1.36-1.37); FILE MERGED 2008/03/16 14:06:33 fs 1.36.12.1: some exception handling re-factoring File Changes: Directory: /dba/dbaccess/source/ui/misc/ ======================================== File [changed]: TokenWriter.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/misc/TokenWriter.cxx?r1=1.37&r2=1.38 Delta lines: +7 -4 ------------------- --- TokenWriter.cxx 2008-04-10 15:56:17+0000 1.37 +++ TokenWriter.cxx 2008-05-05 16:00:21+0000 1.38 @@ -36,6 +36,9 @@ #ifndef _TOOLS_DEBUG_HXX #include <tools/debug.hxx> #endif +#ifndef TOOLS_DIAGNOSE_EX_H +#include <tools/diagnose_ex.h> +#endif #ifndef DBAUI_RTFREADER_HXX #include "RtfReader.hxx" #endif @@ -934,9 +937,9 @@ aValue = sValue; } } - catch ( Exception& ) + catch( const Exception& ) { - OSL_ENSURE(sal_False, "OHTMLImportExport::WriteTables: caught an exception!"); + DBG_UNHANDLED_EXCEPTION(); } WriteCell(pFormat[i-1],pColWidth[i-1],nHeight,pHorJustify[i-1],aValue,sHTML_tabledata); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
