diff options
author | Seth Alves <alves@src.gnome.org> | 2000-04-26 08:02:43 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-04-26 08:02:43 +0800 |
commit | fba8692c75c362bc4fa2c0f872cfdf4fb80b1e5c (patch) | |
tree | 173104d7907889222fa1b39eccd99d144cb80a8c /calendar/cal-util/calobj.c | |
parent | 11ca78748823a81e9a063ea5354ff7f0051199eb (diff) | |
download | gsoc2013-evolution-fba8692c75c362bc4fa2c0f872cfdf4fb80b1e5c.tar gsoc2013-evolution-fba8692c75c362bc4fa2c0f872cfdf4fb80b1e5c.tar.gz gsoc2013-evolution-fba8692c75c362bc4fa2c0f872cfdf4fb80b1e5c.tar.bz2 gsoc2013-evolution-fba8692c75c362bc4fa2c0f872cfdf4fb80b1e5c.tar.lz gsoc2013-evolution-fba8692c75c362bc4fa2c0f872cfdf4fb80b1e5c.tar.xz gsoc2013-evolution-fba8692c75c362bc4fa2c0f872cfdf4fb80b1e5c.tar.zst gsoc2013-evolution-fba8692c75c362bc4fa2c0f872cfdf4fb80b1e5c.zip |
compare iCalObjects by their UIDs instead of by their pointers.
* gui/e-day-view.c (e_day_view_find_event_from_ico): compare
iCalObjects by their UIDs instead of by their pointers.
svn path=/trunk/; revision=2617
Diffstat (limited to 'calendar/cal-util/calobj.c')
-rw-r--r-- | calendar/cal-util/calobj.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/cal-util/calobj.c b/calendar/cal-util/calobj.c index 53be88f362..9b66e5795b 100644 --- a/calendar/cal-util/calobj.c +++ b/calendar/cal-util/calobj.c @@ -1,3 +1,4 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Calendar objects implementations. * Copyright (C) 1998 the Free Software Foundation @@ -1011,7 +1012,7 @@ ical_object_to_vobject (iCalObject *ical) if (strchr (ical->summary, '\n')) addProp (s, VCQuotedPrintableProp); } else { - addPropValue (o, VCSummaryProp, _("Appointment")); + //addPropValue (o, VCSummaryProp, _("Snark")); } /* status */ |