summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2010-12-06 14:04:50 +0100
committerIvo Hinkelmann <ihi@openoffice.org>2010-12-06 14:04:50 +0100
commit8ad779467d54c07000b0e4cf75bf16a34ee01345 (patch)
tree318a7b6196d92d4ce25c9dc983ed4f659ce0605b
parentad336d156b4b27471896e31fb911808790007531 (diff)
masterfix DEV300: #i10000# changed ULONG_MAX to SAL_MAX_UINT32
Notes
split repo tag: writer_ooo/DEV300_m95
-rw-r--r--sw/source/filter/html/htmltabw.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/filter/html/htmltabw.cxx b/sw/source/filter/html/htmltabw.cxx
index 91b026ca6770..7171f4ec28b1 100644
--- a/sw/source/filter/html/htmltabw.cxx
+++ b/sw/source/filter/html/htmltabw.cxx
@@ -70,6 +70,7 @@
#endif
#include <viewopt.hxx>
#endif
+#include <sal/types.h>
//#define MAX_DEPTH (USHRT_MAX)
#define MAX_DEPTH (3)
@@ -337,7 +338,7 @@ void SwHTMLWrtTable::OutTableCell( SwHTMLWriter& rWrt,
#ifndef PURE_HTML
long nWidth = 0;
- sal_uInt32 nPrcWidth = ULONG_MAX;
+ sal_uInt32 nPrcWidth = SAL_MAX_UINT32;
if( bOutWidth )
{
if( bLayoutExport )