diff options
author | Olivier Tilloy <olivier.tilloy@canonical.com> | 2021-03-04 23:30:27 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier.tilloy@canonical.com> | 2021-03-04 23:30:27 +0100 |
commit | 19923632dad08eaa7db476d77035db5135abb9d9 (patch) | |
tree | 6eddb66374c82c6c7750ce19f10fad9260594197 /src/engine-eds.cpp | |
parent | e3e400a1266281d1f4f2ced2a9d80fb38ee5392b (diff) | |
download | ayatana-indicator-datetime-19923632dad08eaa7db476d77035db5135abb9d9.tar.gz ayatana-indicator-datetime-19923632dad08eaa7db476d77035db5135abb9d9.tar.bz2 ayatana-indicator-datetime-19923632dad08eaa7db476d77035db5135abb9d9.zip |
Fix a couple of build failures on Ubuntu hirsute:
- src/engine-eds.cpp: use i_cal_component_free for ICalComponent
- src/exporter.cpp: drop unnecessary G_OBJECT cast
Diffstat (limited to 'src/engine-eds.cpp')
-rw-r--r-- | src/engine-eds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine-eds.cpp b/src/engine-eds.cpp index f8a4ce8..277c090 100644 --- a/src/engine-eds.cpp +++ b/src/engine-eds.cpp @@ -1210,7 +1210,7 @@ private: } } - g_clear_pointer(&icc, icalcomponent_free); + g_clear_pointer(&icc, i_cal_component_free); } } |