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
commitdd8c1b28bf0277ea78645c830e887cae1d617c1e (patch)
treeb622afad0a672f1cb072644d2bdf8191d9d05cf2
parenta1d49d5772133c104d669a70db7823acb2ea4fcf (diff)
masterfix DEV300: #i10000# changed ULONG_MAX to SAL_MAX_UINT32ooo/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 0853b69b1d..ff436c9208 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 )