summaryrefslogtreecommitdiffstats
path: root/src/Date.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Date.cpp')
-rw-r--r--src/Date.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Date.cpp b/src/Date.cpp
index 2430184..4b5e0a1 100644
--- a/src/Date.cpp
+++ b/src/Date.cpp
@@ -32,7 +32,7 @@ Date::Date(plist_t node, Node* parent) : Node(node, parent)
32{ 32{
33} 33}
34 34
35Date::Date(PList::Date& d) : Node(PLIST_DATE) 35Date::Date(const PList::Date& d) : Node(PLIST_DATE)
36{ 36{
37 timeval t = d.GetValue(); 37 timeval t = d.GetValue();
38 plist_set_date_val(_node, t.tv_sec, t.tv_usec); 38 plist_set_date_val(_node, t.tv_sec, t.tv_usec);
@@ -54,7 +54,7 @@ Date::~Date()
54{ 54{
55} 55}
56 56
57Node* Date::Clone() 57Node* Date::Clone() const
58{ 58{
59 return new Date(*this); 59 return new Date(*this);
60} 60}
@@ -64,7 +64,7 @@ void Date::SetValue(timeval t)
64 plist_set_date_val(_node, t.tv_sec, t.tv_usec); 64 plist_set_date_val(_node, t.tv_sec, t.tv_usec);
65} 65}
66 66
67timeval Date::GetValue() 67timeval Date::GetValue() const
68{ 68{
69 int32_t tv_sec = 0; 69 int32_t tv_sec = 0;
70 int32_t tv_usec = 0; 70 int32_t tv_usec = 0;