LibCore: Comment that DateTime is in local time.

The timestamp is always in UTC, but hours/minutes are in local time.
This commit is contained in:
Nico Weber 2020-08-20 10:39:56 -04:00 committed by Andreas Kling
parent 49d6405164
commit 45827cace9
Notes: sideshowbarker 2024-07-19 03:23:38 +09:00

View file

@ -31,6 +31,7 @@
namespace Core {
// Represents a time in local time.
class DateTime {
public:
time_t timestamp() const { return m_timestamp; }