summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorAron Budea <aron.budea@collabora.com>2017-06-30 23:57:35 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-03 14:20:24 +0200
commit9ea89aab5c03795092a207c484a84c34d2cd80f2 (patch)
tree11712fc214e4dbfab19556a8dc1346106bd97358 /editeng
parent6c60005326c4a84a91f6fc6de864a66e5e42b310 (diff)
tdf#108622: use correct type for last check timestamp during autocorrect
It's only supposed to check the files once every 2-mins, with mismatching type that happens each time. Change-Id: Ie9243cf928d952e28989dd981508de86cb7dbddb Reviewed-on: https://gerrit.libreoffice.org/39428 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-on: https://gerrit.libreoffice.org/39467
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/misc/svxacorr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index f9f701be04ae..27d721f2ab48 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1564,7 +1564,7 @@ bool SvxAutoCorrect::CreateLanguageFile( const LanguageTag& rLanguageTag, bool b
tools::Time nMinTime( 0, 2 ), nAktTime( tools::Time::SYSTEM ), nLastCheckTime( tools::Time::EMPTY );
- std::map<LanguageTag, long>::iterator nFndPos = aLastFileTable.find(rLanguageTag);
+ auto nFndPos = aLastFileTable.find(rLanguageTag);
if(nFndPos != aLastFileTable.end() &&
(nLastCheckTime.SetTime(nFndPos->second), nLastCheckTime < nAktTime) &&
nAktTime - nLastCheckTime < nMinTime)