From 45d09ea2712fc56802a639a15f2e4ae6cacbc099 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 11 Mar 2014 16:10:43 +0200 Subject: "overflow" is one word Change-Id: Ib36c2c5d55f86aff27081a0da554f6e8a81474ee --- unotools/source/misc/datetime.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unotools') diff --git a/unotools/source/misc/datetime.cxx b/unotools/source/misc/datetime.cxx index 96de5106f388..71861c34b6c4 100644 --- a/unotools/source/misc/datetime.cxx +++ b/unotools/source/misc/datetime.cxx @@ -464,13 +464,13 @@ bool ISO8601parseTime(const OUString &aTimeStr, starutil::Time& rTime) if (bSuccess) { // normalise time - const int secondsOverFlow = (nSec == 60) ? 61 : 60; + const int secondsOverflow = (nSec == 60) ? 61 : 60; if (nNanoSec == 1000000000) { nNanoSec = 0; ++nSec; } - if(nSec == secondsOverFlow) + if(nSec == secondsOverflow) { nSec = 0; ++nMin; -- cgit