diff options
author | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2016-04-06 10:37:28 -0300 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-29 14:37:39 +0200 |
commit | 09d434e543f3806a11ad6ebb5dad99dffae46d28 (patch) | |
tree | 828dac340b1672da45e1603352e8192355d89877 /src/engine-eds.cpp | |
parent | 1f73b610287f28ae1f6779d80e9509b0220d5f44 (diff) | |
download | ayatana-indicator-datetime-09d434e543f3806a11ad6ebb5dad99dffae46d28.tar.gz ayatana-indicator-datetime-09d434e543f3806a11ad6ebb5dad99dffae46d28.tar.bz2 ayatana-indicator-datetime-09d434e543f3806a11ad6ebb5dad99dffae46d28.zip |
Generate instance of object to get individual alarm information.
Diffstat (limited to 'src/engine-eds.cpp')
-rw-r--r-- | src/engine-eds.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/engine-eds.cpp b/src/engine-eds.cpp index 585841b..7f5e080 100644 --- a/src/engine-eds.cpp +++ b/src/engine-eds.cpp @@ -102,6 +102,8 @@ public: auto gtz = timezone_from_name(tz, nullptr, nullptr, &default_timezone); if (gtz == nullptr) { gtz = g_time_zone_new_local(); + } else { + g_time_zone_ref(gtz); } g_debug("default_timezone is %s", default_timezone ? i_cal_timezone_get_display_name(default_timezone) : "null"); |