aboutsummaryrefslogtreecommitdiff
path: root/src/planner.h
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2013-10-09 08:21:16 -0500
committerCharles Kerr <charles.kerr@canonical.com>2013-10-09 08:21:16 -0500
commitc1a349811e64c1e8597ad4ec391d150eda163512 (patch)
treee746fb63fa53ff5ab11f5009f5051c0dbd0a2de5 /src/planner.h
parentdaccfe0b40f0da7e8de96a350e99fe8c31bfd867 (diff)
downloadayatana-indicator-datetime-c1a349811e64c1e8597ad4ec391d150eda163512.tar.gz
ayatana-indicator-datetime-c1a349811e64c1e8597ad4ec391d150eda163512.tar.bz2
ayatana-indicator-datetime-c1a349811e64c1e8597ad4ec391d150eda163512.zip
in the case of recurring appointments, allow multiple entries with the same uid to be returned by get_appointments(). This is so the client can always find the timestamp of the instance that occurs next.
Diffstat (limited to 'src/planner.h')
-rw-r--r--src/planner.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/planner.h b/src/planner.h
index adc820e..ffe8937 100644
--- a/src/planner.h
+++ b/src/planner.h
@@ -40,9 +40,10 @@ GType indicator_datetime_planner_get_type (void);
struct IndicatorDatetimeAppt
{
- char * color;
- char * summary;
- char * url;
+ gchar * color;
+ gchar * summary;
+ gchar * url;
+ gchar * uid;
GDateTime * begin;
GDateTime * end;
gboolean is_event;