summaryrefslogtreecommitdiff
path: root/svtools/source/svhtml
diff options
context:
space:
mode:
authorChristina Rossmanith <ChrRossmanith@web.de>2011-05-17 09:26:35 +0200
committerChristina Rossmanith <ChrRossmanith@web.de>2011-06-04 13:04:32 +0200
commit260c854f39cae581c8653ef3d43834313f261a62 (patch)
tree284c29fa7268e3f2c3affd8a62ce7a32c6b7a62b /svtools/source/svhtml
parent56d6589368c2e88cffec0c2e518f7c90863eeae6 (diff)
Changed HTML_ColorEntry.nColor to sal_uInt32
Diffstat (limited to 'svtools/source/svhtml')
-rw-r--r--svtools/source/svhtml/htmlkywd.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/svhtml/htmlkywd.cxx b/svtools/source/svhtml/htmlkywd.cxx
index e7c185dcf821..847483e6ebbd 100644
--- a/svtools/source/svhtml/htmlkywd.cxx
+++ b/svtools/source/svhtml/htmlkywd.cxx
@@ -849,7 +849,7 @@ struct HTML_ColorEntry
const sal_Char* sName;
const String *pUName;
};
- sal_uLong nColor;
+ sal_uInt32 nColor;
};
// Flag: color table has already been sorted
@@ -1037,7 +1037,7 @@ static int
}
-sal_uLong GetHTMLColor( const String& rName )
+sal_uInt32 GetHTMLColor( const String& rName )
{
if( !bSortColorKeyWords )
{
@@ -1048,7 +1048,7 @@ sal_uLong GetHTMLColor( const String& rName )
bSortColorKeyWords = sal_True;
}
- sal_uLong nRet = ULONG_MAX;
+ sal_uInt32 nRet = HTML_NO_COLOR;
void* pFound;
HTML_ColorEntry aSrch;
aSrch.pUName = &rName;