[evolution-patches] * New Evolution smime/widget * Patch for #311837
- From: Mengjie Yu <Meng-Jie Yu Sun COM>
- To: Harish Krishnaswamy <kharish novell com>
- Cc: evolution-patch <evolution-patches lists ximian com>
- Subject: [evolution-patches] * New Evolution smime/widget * Patch for #311837
- Date: Thu, 28 Jul 2005 18:02:24 +0800
Dear harish,
Here is the patch for #311837.
the related URL is:
http://bugzilla.gnome.org/show_bug.cgi?id=311837
The patch for this bug is also available on the above URL.
It is still about the compiling errors under sun's compiler.
These errors occurs when I configured evolution with smime enabled and
all plugins on.
Will you please help me to review it when you are not busy?
Thanks a lot.
Yours,
Mengjie
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/smime/ChangeLog,v
retrieving revision 1.54
diff -u -p -r1.54 ChangeLog
--- ChangeLog 20 Jul 2005 08:25:36 -0000 1.54
+++ ChangeLog 28 Jul 2005 09:46:43 -0000
@@ -1,3 +1,10 @@
+2005-07-28 Mengjie Yu <meng-jie yu sun com>
+
+ * lib/e-cert-db.c:
+ Add reserved field for an empty structure.
+
+ Fixes #311837
+
2005-07-20 Tor Lillqvist <tml novell com>
* gui/Makefile.am: Use privsolib so the DLL gets installed in
Index: lib/e-cert-db.c
===================================================================
RCS file: /cvs/gnome/evolution/smime/lib/e-cert-db.c,v
retrieving revision 1.17
diff -u -p -r1.17 e-cert-db.c
--- lib/e-cert-db.c 6 Jun 2005 19:24:30 -0000 1.17
+++ lib/e-cert-db.c 28 Jul 2005 09:46:44 -0000
@@ -103,6 +103,7 @@ enum {
static guint e_cert_db_signals[LAST_SIGNAL];
struct _ECertDBPrivate {
+ guint reserved;
};
#define PARENT_TYPE G_TYPE_OBJECT
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/widgets/ChangeLog,v
retrieving revision 1.137
diff -u -p -r1.137 ChangeLog
--- ChangeLog 25 Jul 2005 04:30:33 -0000 1.137
+++ ChangeLog 28 Jul 2005 09:43:52 -0000
@@ -1,3 +1,10 @@
+2005-07-28 Mengjie Yu <meng-jie yu sun com>
+
+ * misc/e-attachment-bar.c: (update_remote_file):
+ Void function should not return value.
+
+ Fixes #311837
+
2005-07-21 Srinivasa Ragavan <sragavan novell com>
* menus/gal-define-views-dialog.c: (etable_selection_change_forall_cb)
Index: misc/e-attachment-bar.c
===================================================================
RCS file: /cvs/gnome/evolution/widgets/misc/e-attachment-bar.c,v
retrieving revision 1.3
diff -u -p -r1.3 e-attachment-bar.c
--- misc/e-attachment-bar.c 25 Jul 2005 05:40:44 -0000 1.3
+++ misc/e-attachment-bar.c 28 Jul 2005 09:43:53 -0000
@@ -419,8 +419,10 @@ update_remote_file (EAttachment *attachm
char *msg, *base;
priv = bar->priv;
- if (attachment->percentage == -1)
- return update (bar);
+ if (attachment->percentage == -1) {
+ update (bar);
+ return;
+ }
base = g_path_get_basename(attachment->file_name);
msg = g_strdup_printf("%s (%d\%)", base, attachment->percentage);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]