summaryrefslogtreecommitdiff
path: root/vcl/headless
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-26 12:19:11 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-26 12:20:04 +0200
commit53eb2cdb5558713bfe2fa4fc4ba2bbdd5da6b6e1 (patch)
tree0f63284036ef0601f19cc5ea9bdab4a1302ee7d0 /vcl/headless
parente522f035d848a2b60c4ca5d7cd4fb30a050f419d (diff)
fix android build (2)
after commit 589ce33041df5ca1c3f6d914d5d33d0fffb69f8f Date: Mon Feb 25 14:38:21 2019 +0200 sal_uIntPtr->sal_uInt64 in SalTimer::Start Change-Id: I0fe5d972d2acf90a98f6e0203c51e509a60920c1
Diffstat (limited to 'vcl/headless')
-rw-r--r--vcl/headless/svpinst.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/headless/svpinst.cxx b/vcl/headless/svpinst.cxx
index c88238665758..908866cc3293 100644
--- a/vcl/headless/svpinst.cxx
+++ b/vcl/headless/svpinst.cxx
@@ -576,7 +576,7 @@ void SvpSalTimer::Stop()
m_pInstance->StopTimer();
}
-void SvpSalTimer::Start( sal_uLong nMS )
+void SvpSalTimer::Start( sal_uInt64 nMS )
{
m_pInstance->StartTimer( nMS );
}