summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-03-17 08:36:26 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2013-04-18 21:34:46 +0200
commit9830fd36dbdb72c79703b0c61efc027fba793c5a (patch)
tree2e9d698e6ca109dc6627adb5c84aa2b635bcfe92 /filter
parent5aaaf0694b6e3213685563fc3bc90d19b10f5c75 (diff)
date/time IDL datatypes incompatible change
- nanosecond precision - signed (allowed negative) year Also: assorted improvements / bugfixes in date/time handling code. Some factorisation of copy/pasted code. Change-Id: I761a1b0b8731c82f19a0c37acbcf43d3c06d6cd6
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/svdfppt.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/filter/source/msfilter/svdfppt.cxx b/filter/source/msfilter/svdfppt.cxx
index 104db58723a7..b8b680bfe67a 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -118,6 +118,7 @@
#include <algorithm>
#include <set>
#include <rtl/strbuf.hxx>
+#include <tools/time.hxx>
// PPT ColorScheme Slots
#define PPT_COLSCHEME (0x08000000)
@@ -2673,11 +2674,11 @@ void ImportComment10( SvxMSDffManager& rMan, SvStream& rStCtrl, SdrPage* pPage,
>> aDateTime.Hours
>> aDateTime.Minutes
>> aDateTime.Seconds
- >> aDateTime.HundredthSeconds
+ >> aDateTime.NanoSeconds
>> nPosX
>> nPosY;
- aDateTime.HundredthSeconds /= 10;
+ aDateTime.NanoSeconds *= ::Time::nanoPerMilli;
}
break;
}