summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/anycompare.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/misc/anycompare.cxx')
-rw-r--r--comphelper/source/misc/anycompare.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/anycompare.cxx b/comphelper/source/misc/anycompare.cxx
index 470be26794ce..775386e9c083 100644
--- a/comphelper/source/misc/anycompare.cxx
+++ b/comphelper/source/misc/anycompare.cxx
@@ -116,7 +116,7 @@ namespace comphelper
if ( lhs.Seconds > rhs.Seconds )
return false;
- if ( lhs.HundredthSeconds < rhs.HundredthSeconds )
+ if ( lhs.NanoSeconds < rhs.NanoSeconds )
return true;
return false;
}
@@ -166,7 +166,7 @@ namespace comphelper
if ( lhs.Seconds > rhs.Seconds )
return false;
- if ( lhs.HundredthSeconds < rhs.HundredthSeconds )
+ if ( lhs.NanoSeconds < rhs.NanoSeconds )
return true;
return false;
}