aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchenthill@novell.com>2007-07-09 19:28:17 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2007-07-09 19:28:17 +0800
commit77e088cbabbf62ef3052dbc4904de82bb095f5da (patch)
treec9992902ebbe4d62dc7f2ac302bfbec2a3db031e /plugins
parent40bbdbf8620f0021c931a46d1c17a6495d93634b (diff)
downloadgsoc2013-evolution-77e088cbabbf62ef3052dbc4904de82bb095f5da.tar
gsoc2013-evolution-77e088cbabbf62ef3052dbc4904de82bb095f5da.tar.gz
gsoc2013-evolution-77e088cbabbf62ef3052dbc4904de82bb095f5da.tar.bz2
gsoc2013-evolution-77e088cbabbf62ef3052dbc4904de82bb095f5da.tar.lz
gsoc2013-evolution-77e088cbabbf62ef3052dbc4904de82bb095f5da.tar.xz
gsoc2013-evolution-77e088cbabbf62ef3052dbc4904de82bb095f5da.tar.zst
gsoc2013-evolution-77e088cbabbf62ef3052dbc4904de82bb095f5da.zip
Fixed a build break.
2007-07-09 Chenthill Palanisamy <pchenthill@novell.com> * itip-formatter.c: (format_itip_object): Fixed a build break. svn path=/trunk/; revision=33788
Diffstat (limited to 'plugins')
-rw-r--r--plugins/itip-formatter/ChangeLog4
-rw-r--r--plugins/itip-formatter/itip-formatter.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog
index f1b7280397..371e3670a9 100644
--- a/plugins/itip-formatter/ChangeLog
+++ b/plugins/itip-formatter/ChangeLog
@@ -1,5 +1,9 @@
2007-07-09 Chenthill Palanisamy <pchenthill@novell.com>
+ * itip-formatter.c: (format_itip_object): Fixed a build break.
+
+2007-07-09 Chenthill Palanisamy <pchenthill@novell.com>
+
reviewed by: Veerapuram Varadhan <vvaradhan@novell.com>
* itip-formatter.c: (find_attendee), (find_attendee_if_sentby):
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c
index c1571ac9cf..420fe6006f 100644
--- a/plugins/itip-formatter/itip-formatter.c
+++ b/plugins/itip-formatter/itip-formatter.c
@@ -1868,9 +1868,9 @@ format_itip_object (EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObject
itip_view_set_organizer_sentby (ITIP_VIEW (pitip->view), itip_strip_mailto (organizer.sentby));
if (pitip->my_address) {
- if !(organizer.value && !g_ascii_strcasecmp (itip_strip_mailto (organizer.value), pitip->my_address))
+ if (!(organizer.value && !g_ascii_strcasecmp (itip_strip_mailto (organizer.value), pitip->my_address))
&& !(organizer.sentby && !g_ascii_strcasecmp (itip_strip_mailto (organizer.sentby), pitip->my_address))
- && (pitip->to_address && g_ascii_strcasecmp (pitip->to_address, pitip->my_address))
+ && (pitip->to_address && g_ascii_strcasecmp (pitip->to_address, pitip->my_address)))
itip_view_set_proxy (ITIP_VIEW (pitip->view), pitip->to_name ? pitip->to_name : pitip->to_address);
}
break;
@@ -1892,9 +1892,9 @@ format_itip_object (EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObject
itip_view_set_attendee_sentby (ITIP_VIEW (pitip->view), itip_strip_mailto (attendee->sentby));
if (pitip->my_address) {
- if !(attendee->value && !g_ascii_strcasecmp (itip_strip_mailto (attendee->value), pitip->my_address))
+ if (!(attendee->value && !g_ascii_strcasecmp (itip_strip_mailto (attendee->value), pitip->my_address))
&& !(attendee->sentby && !g_ascii_strcasecmp (itip_strip_mailto (attendee->sentby), pitip->my_address))
- && (pitip->from_address && g_ascii_strcasecmp (pitip->from_address, pitip->my_address))
+ && (pitip->from_address && g_ascii_strcasecmp (pitip->from_address, pitip->my_address)))
itip_view_set_proxy (ITIP_VIEW (pitip->view), pitip->from_name ? pitip->from_name : pitip->from_address);
}