summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/TokenWriter.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-05-05 15:00:21 +0000
committerKurt Zenker <kz@openoffice.org>2008-05-05 15:00:21 +0000
commit406827943437aec12ceb33f1938b2eba278b3c86 (patch)
tree348ba0efab5f58881e60e49a8f6e9e3a710a7902 /dbaccess/source/ui/misc/TokenWriter.cxx
parent446fd3e2cc142a469f9eb579c4bba61ff8f77488 (diff)
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
Diffstat (limited to 'dbaccess/source/ui/misc/TokenWriter.cxx')
-rw-r--r--dbaccess/source/ui/misc/TokenWriter.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/dbaccess/source/ui/misc/TokenWriter.cxx b/dbaccess/source/ui/misc/TokenWriter.cxx
index 185c8eaa7426..8e3f647bc262 100644
--- a/dbaccess/source/ui/misc/TokenWriter.cxx
+++ b/dbaccess/source/ui/misc/TokenWriter.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: TokenWriter.cxx,v $
- * $Revision: 1.37 $
+ * $Revision: 1.38 $
*
* This file is part of OpenOffice.org.
*
@@ -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 @@ void OHTMLImportExport::WriteTables()
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);
}