aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2005-06-28 22:00:30 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2005-06-28 22:00:30 +0800
commit1e959e8cdb46c7dc61de09e80aac06097e12c729 (patch)
treeb38abbcb1439cfa8ba6c7687a9e466506f818280
parentadbca30d74de3a110dfe5f2c39c51f5a45b7825b (diff)
downloadgsoc2013-evolution-1e959e8cdb46c7dc61de09e80aac06097e12c729.tar
gsoc2013-evolution-1e959e8cdb46c7dc61de09e80aac06097e12c729.tar.gz
gsoc2013-evolution-1e959e8cdb46c7dc61de09e80aac06097e12c729.tar.bz2
gsoc2013-evolution-1e959e8cdb46c7dc61de09e80aac06097e12c729.tar.lz
gsoc2013-evolution-1e959e8cdb46c7dc61de09e80aac06097e12c729.tar.xz
gsoc2013-evolution-1e959e8cdb46c7dc61de09e80aac06097e12c729.tar.zst
gsoc2013-evolution-1e959e8cdb46c7dc61de09e80aac06097e12c729.zip
do not de-sensitize the attachment bar.
svn path=/trunk/; revision=29602
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/event-editor.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 75804474b6..2ebbbcbe89 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2005-06-25 Chenthill Palanisamy <pchenthill@novell.com>
+
+ * gui/dialogs/event-editor.c
+ (event_editor_construct): Do not desensitize the attachment
+ bar as there will be no way to open an attachement.
+
2005-06-27 Tor Lillqvist <tml@novell.com>
* */Makefile.am: Prune unnecessary and nonexistent directories
diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c
index 8409b89047..519c9f4447 100644
--- a/calendar/gui/dialogs/event-editor.c
+++ b/calendar/gui/dialogs/event-editor.c
@@ -129,7 +129,6 @@ EventEditor *
event_editor_construct (EventEditor *ee, ECal *client)
{
EventEditorPrivate *priv;
- gboolean read_only = FALSE;
guint32 flags = comp_editor_get_flags (COMP_EDITOR (ee));
priv = ee->priv;
@@ -150,11 +149,6 @@ event_editor_construct (EventEditor *ee, ECal *client)
COMP_EDITOR_PAGE (priv->recur_page),
_("Recurrence"));
- if (!e_cal_is_read_only (client, &read_only, NULL))
- read_only = TRUE;
- comp_editor_sensitize_attachment_bar (COMP_EDITOR (ee), !read_only &&
- (flags & COMP_EDITOR_USER_ORG));
-
if (priv->is_meeting) {
if (e_cal_get_static_capability (client, CAL_STATIC_CAPABILITY_REQ_SEND_OPTIONS))