diff options
author | Sebastian Keller <skeller@gnome.org> | 2021-11-04 17:07:50 +0100 |
---|---|---|
committer | Florian Müllner <fmuellner@gnome.org> | 2021-12-11 05:07:39 +0100 |
commit | 62e2aa01589b48713537df7a29a5d19a56671dcb (patch) | |
tree | 3ddcb96490c5e082c4e8f9e470d865ab49d7bbad /data | |
parent | 85dc8e2f7428a8be0131ff1831db4b47730af44d (diff) | |
download | gnome-shell-62e2aa01589b48713537df7a29a5d19a56671dcb.tar.gz |
calendar-server: Remove the all-day property of events
The way it is currently calculated is broken for days with DST changes
or leap seconds and it is not needed anymore anyway. This will also make
the fix in the following commit simpler.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2023>
(cherry picked from commit 72a6450017852b5c5e3fe30ed76b82c916d5a566)
Diffstat (limited to 'data')
-rw-r--r-- | data/dbus-interfaces/org.gnome.Shell.CalendarServer.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/dbus-interfaces/org.gnome.Shell.CalendarServer.xml b/data/dbus-interfaces/org.gnome.Shell.CalendarServer.xml index 51b71ef03..581471016 100644 --- a/data/dbus-interfaces/org.gnome.Shell.CalendarServer.xml +++ b/data/dbus-interfaces/org.gnome.Shell.CalendarServer.xml @@ -6,7 +6,7 @@ <arg type="b" name="force_reload" direction="in"/> </method> <signal name="EventsAddedOrUpdated"> - <arg type="a(ssbxxa{sv})" name="events" direction="out"/> + <arg type="a(ssxxa{sv})" name="events" direction="out"/> </signal> <signal name="EventsRemoved"> <arg type="as" name="ids" direction="out"/> |