aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-calendar-view.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2004-08-01 02:13:29 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-08-01 02:13:29 +0800
commit6b1ac1a6ce0bdc6d29410bbbc219e6be7b904b4e (patch)
tree39a82596c5687b603e99d596b9ab2982befcc2db /calendar/gui/e-calendar-view.c
parenta66da4d33d7442c00b59726cccefbbd5083c037e (diff)
downloadgsoc2013-evolution-6b1ac1a6ce0bdc6d29410bbbc219e6be7b904b4e.tar
gsoc2013-evolution-6b1ac1a6ce0bdc6d29410bbbc219e6be7b904b4e.tar.gz
gsoc2013-evolution-6b1ac1a6ce0bdc6d29410bbbc219e6be7b904b4e.tar.bz2
gsoc2013-evolution-6b1ac1a6ce0bdc6d29410bbbc219e6be7b904b4e.tar.lz
gsoc2013-evolution-6b1ac1a6ce0bdc6d29410bbbc219e6be7b904b4e.tar.xz
gsoc2013-evolution-6b1ac1a6ce0bdc6d29410bbbc219e6be7b904b4e.tar.zst
gsoc2013-evolution-6b1ac1a6ce0bdc6d29410bbbc219e6be7b904b4e.zip
creating new items no longer needs to be disabled since the user can
2004-07-29 JP Rosevear <jpr@novell.com> * gui/e-calendar-view.c: creating new items no longer needs to be disabled since the user can switch to a writable calendar and the editor ui is disabled properly svn path=/trunk/; revision=26786
Diffstat (limited to 'calendar/gui/e-calendar-view.c')
-rw-r--r--calendar/gui/e-calendar-view.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c
index 00cce026b4..e95bc458ff 100644
--- a/calendar/gui/e-calendar-view.c
+++ b/calendar/gui/e-calendar-view.c
@@ -1333,10 +1333,10 @@ enum {
};
static EPopupMenu main_items [] = {
- E_POPUP_ITEM (N_("New _Appointment..."), GTK_SIGNAL_FUNC (on_new_appointment), MASK_EDITABLE),
- E_POPUP_ITEM (N_("New All Day _Event"), GTK_SIGNAL_FUNC (on_new_event), MASK_EDITABLE),
- E_POPUP_ITEM (N_("New Meeting"), GTK_SIGNAL_FUNC (on_new_meeting), MASK_EDITABLE),
- E_POPUP_ITEM (N_("New Task"), GTK_SIGNAL_FUNC (on_new_task), MASK_EDITABLE),
+ E_POPUP_ITEM (N_("New _Appointment..."), GTK_SIGNAL_FUNC (on_new_appointment), 0),
+ E_POPUP_ITEM (N_("New All Day _Event"), GTK_SIGNAL_FUNC (on_new_event), 0),
+ E_POPUP_ITEM (N_("New Meeting"), GTK_SIGNAL_FUNC (on_new_meeting), 0),
+ E_POPUP_ITEM (N_("New Task"), GTK_SIGNAL_FUNC (on_new_task), 0),
E_POPUP_SEPARATOR,