summaryrefslogtreecommitdiff
path: root/filter/source/msfilter/svdfppt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/msfilter/svdfppt.cxx')
-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;
}