summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-12-29 00:31:05 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-12-29 09:54:33 +0100
commitd0222ba1fd7617b793e1e513247b11a82eb22f4e (patch)
treed1e393fd762374d834b10d5b9d3ebae2fe82f4f2 /sfx2
parent19e519593c940fbbf953b7d0ff6d7c86707f39e2 (diff)
Fix typos
Change-Id: I3d16dc162e5fa2e08134d848a835eb392e64056e Reviewed-on: https://gerrit.libreoffice.org/47126 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/objcont.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/doc/objcont.cxx b/sfx2/source/doc/objcont.cxx
index 4a82866a5019..021315b53678 100644
--- a/sfx2/source/doc/objcont.cxx
+++ b/sfx2/source/doc/objcont.cxx
@@ -229,18 +229,18 @@ void SfxObjectShell::UpdateTime_Impl(
util::Duration editDuration(false, 0, 0, 0,
secs/3600, (secs%3600)/60, secs%60, 0);
- // Initialize some local member! Its necessary for follow operations!
+ // Initialize some local member! It's necessary for follow operations!
DateTime aNow( DateTime::SYSTEM ); // Date and time at current moment
tools::Time n24Time (24,0,0,0) ; // Time-value for 24 hours - see follow calculation
sal_Int32 nDays = 0 ; // Count of days between now and last editing
tools::Time nAddTime (0) ; // Value to add on aOldTime
// Save impossible cases!
- // User has changed time to the past between last editing and now ... it's not possible!!!
- DBG_ASSERT( !(aNow.GetDate()<pImpl->nTime.GetDate()), "Timestamp of last change is in the past ?!..." );
+ // User has changed time to the past between last editing and now... it's not possible!!!
+ DBG_ASSERT( !(aNow.GetDate()<pImpl->nTime.GetDate()), "Timestamp of last change is in the past!?..." );
// Do the follow only, if user has NOT changed time to the past.
- // Else add a time of 0 to aOldTime ... !!!
+ // Else add a time of 0 to aOldTime... !!!
if (aNow.GetDate()>=pImpl->nTime.GetDate())
{
// Get count of days last editing.