diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2015-03-14 21:33:51 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2015-03-14 21:33:51 -0500 |
commit | 6481c0ecf40df26eca71779a683aeeab9455f1f2 (patch) | |
tree | f4ed9b9ce8177c5aacc262c8e6671bc67924f42c /src | |
parent | c940b70c65b1550fe65dbad5841adfe906cf0cdf (diff) | |
download | ayatana-indicator-datetime-6481c0ecf40df26eca71779a683aeeab9455f1f2.tar.gz ayatana-indicator-datetime-6481c0ecf40df26eca71779a683aeeab9455f1f2.tar.bz2 ayatana-indicator-datetime-6481c0ecf40df26eca71779a683aeeab9455f1f2.zip |
sync the rest of the code with the changes to DateTime instantiation mentioned two commits ago
Diffstat (limited to 'src')
-rw-r--r-- | src/clock-live.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clock-live.cpp b/src/clock-live.cpp index 7f8bd1b..89541ae 100644 --- a/src/clock-live.cpp +++ b/src/clock-live.cpp @@ -68,7 +68,7 @@ public: g_assert(m_gtimezone != nullptr); auto gdt = g_date_time_new_now(m_gtimezone); - DateTime ret(gdt); + DateTime ret(m_gtimezone, gdt); g_date_time_unref(gdt); return ret; } |