aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/comp-util.h
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-06-09 18:09:05 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-06-09 18:09:05 +0800
commit7d4f83689a512f3af1a4002a1567ffbb2762ebb9 (patch)
treefb560b80ac5a1e7a262c5170a5fd13925aa30531 /calendar/gui/comp-util.h
parent5c0a74daec3233ea307f25e23c83ba0db83f1b47 (diff)
downloadgsoc2013-evolution-7d4f83689a512f3af1a4002a1567ffbb2762ebb9.tar
gsoc2013-evolution-7d4f83689a512f3af1a4002a1567ffbb2762ebb9.tar.gz
gsoc2013-evolution-7d4f83689a512f3af1a4002a1567ffbb2762ebb9.tar.bz2
gsoc2013-evolution-7d4f83689a512f3af1a4002a1567ffbb2762ebb9.tar.lz
gsoc2013-evolution-7d4f83689a512f3af1a4002a1567ffbb2762ebb9.tar.xz
gsoc2013-evolution-7d4f83689a512f3af1a4002a1567ffbb2762ebb9.tar.zst
gsoc2013-evolution-7d4f83689a512f3af1a4002a1567ffbb2762ebb9.zip
** Fix for bug #536813
2008-06-09 Milan Crha <mcrha@redhat.com> ** Fix for bug #536813 * gui/comp-util.h: (is_icalcomp_on_the_server): * gui/comp-util.c: (is_icalcomp_on_the_server): Similar helper function as cal_comp_is_on_server only the parameter is icalcomponent. * gui/e-week-view-event-item.c: (e_week_view_event_item_double_click): * gui/e-week-view.c: (e_week_view_on_text_item_event): Do not start to edit the event on the double click if the event is not on the server yet. Storing the event can cause the renumbering events so the result can be that the edited event would be different. svn path=/trunk/; revision=35618
Diffstat (limited to 'calendar/gui/comp-util.h')
-rw-r--r--calendar/gui/comp-util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/calendar/gui/comp-util.h b/calendar/gui/comp-util.h
index 5949b2d318..fe89ee11c4 100644
--- a/calendar/gui/comp-util.h
+++ b/calendar/gui/comp-util.h
@@ -41,6 +41,7 @@ gint cal_comp_util_get_n_icons (ECalComponent *comp);
gboolean cal_comp_is_on_server (ECalComponent *comp,
ECal *client);
+gboolean is_icalcomp_on_the_server (icalcomponent *icalcomp, ECal *client);
ECalComponent *cal_comp_event_new_with_defaults (ECal *client);
ECalComponent *cal_comp_event_new_with_current_time (ECal *client, gboolean all_day);