summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-05-10 22:10:03 +0200
committerEike Rathke <erack@redhat.com>2017-05-10 22:10:03 +0200
commit2ba23eb0a1b3269b0ee6a4e50833000b20e65342 (patch)
tree02ce9e35c8f0396311943f72a1eb5d359524c1c8 /svtools
parent088b898856a82d7ac4851a6e7dfe4d189d881f8e (diff)
Fix Windows build: uLong is not Int64
Change-Id: I3e1ce3216dd634deba1f619789a1af1d08f394a5
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/svhtml/parhtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx
index 5ad3a2d3b836..e1189e451af5 100644
--- a/svtools/source/svhtml/parhtml.cxx
+++ b/svtools/source/svhtml/parhtml.cxx
@@ -1970,7 +1970,7 @@ bool HTMLParser::ParseMetaOptionsImpl(
if (comphelper::string::getTokenCount(aContent, ';') == 2)
{
Date aDate((sal_uLong)aContent.getToken(0, ';').toInt32());
- tools::Time aTime((sal_uLong)aContent.getToken(1, ';').toInt64());
+ tools::Time aTime(aContent.getToken(1, ';').toInt64());
DateTime aDateTime(aDate, aTime);
uDT = aDateTime.GetUNODateTime();
valid = true;