[evolution-patches] Patch: add missing header, fix warning



The attached patches adds a missing header, fixing a warning (and it
might fix problems on 64bits as well).

One patch is for 2.10 branch, the other for HEAD branch.

-- 
Frederic Crozat <fcrozat mandriva com>
Mandriva
Index: plugins/send-options/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/plugins/send-options/Attic/ChangeLog,v
retrieving revision 1.7
diff -u -p -r1.7 ChangeLog
--- plugins/send-options/ChangeLog	25 Feb 2005 15:54:24 -0000	1.7
+++ plugins/send-options/ChangeLog	6 Jul 2005 17:06:44 -0000
@@ -1,3 +1,7 @@
+2005-07-06  Frederic Crozat  <fcrozat mandriva com>
+
+	* send-options.c: Add missing header.
+
 2005-02-24  Björn Torkelsson  <torkel acc umu se>
 
        * org-gnome-send-options.eplug.in: Added Groupwise to name.
Index: plugins/send-options/send-options.c
===================================================================
RCS file: /cvs/gnome/evolution/plugins/send-options/Attic/send-options.c,v
retrieving revision 1.5
diff -u -p -r1.5 send-options.c
--- plugins/send-options/send-options.c	23 Feb 2005 18:56:58 -0000	1.5
+++ plugins/send-options/send-options.c	6 Jul 2005 17:06:44 -0000
@@ -22,6 +22,7 @@
 #include <config.h>
 #endif
 
+#include <string.h>
 #include <libgnome/gnome-i18n.h>
 #include <glade/glade.h>
 #include <gtk/gtk.h>
? evolution-2.2.3-warnings.patch
? evolution-2.3.4-warnings.patch
Index: addressbook/gui/component/addressbook-component.c
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/component/addressbook-component.c,v
retrieving revision 1.136
diff -u -p -r1.136 addressbook-component.c
--- addressbook/gui/component/addressbook-component.c	23 Jun 2005 09:11:03 -0000	1.136
+++ addressbook/gui/component/addressbook-component.c	6 Jul 2005 17:11:00 -0000
@@ -141,6 +141,9 @@ ensure_sources (AddressbookComponent *co
 		ESource *source = e_source_new (_("Personal"), PERSONAL_RELATIVE_URI);
 		e_source_group_add_source (on_this_computer, source, -1);
 
+		/* Enable autocompletion on default Person addressbook */
+		e_source_set_property (source, "completion", "true");
+
 		personal_source = source;
 	}
 
Index: addressbook/gui/component/addressbook-migrate.c
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/component/addressbook-migrate.c,v
retrieving revision 1.37
diff -u -p -r1.37 addressbook-migrate.c
--- addressbook/gui/component/addressbook-migrate.c	25 Jun 2005 10:19:49 -0000	1.37
+++ addressbook/gui/component/addressbook-migrate.c	6 Jul 2005 17:11:00 -0000
@@ -508,6 +508,8 @@ create_groups (MigrationContext *context
 		/* Create the default Person addressbook */
 		ESource *source = e_source_new (_("Personal"), PERSONAL_RELATIVE_URI);
 		e_source_group_add_source (*on_this_computer, source, -1);
+		/* Enable autocompletion on default Person addressbook */
+		e_source_set_property (source, "completion", "true");
 
 		*personal_source = source;
 	}
Index: plugins/groupwise-features/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/plugins/groupwise-features/ChangeLog,v
retrieving revision 1.9
diff -u -p -r1.9 ChangeLog
--- plugins/groupwise-features/ChangeLog	27 Jun 2005 06:07:51 -0000	1.9
+++ plugins/groupwise-features/ChangeLog	6 Jul 2005 17:11:00 -0000
@@ -1,3 +1,7 @@
+2005-07-06  Frederic Crozat  <fcrozat mandriva com>
+
+	* send-options.c: Add missing header.
+
 2005-06-27  Sushma Rai  <rsushma novell com>
 
 	* org-gnome-groupwise-features.eplug.xml:
Index: plugins/groupwise-features/send-options.c
===================================================================
RCS file: /cvs/gnome/evolution/plugins/groupwise-features/send-options.c,v
retrieving revision 1.2
diff -u -p -r1.2 send-options.c
--- plugins/groupwise-features/send-options.c	23 Jun 2005 09:11:08 -0000	1.2
+++ plugins/groupwise-features/send-options.c	6 Jul 2005 17:11:00 -0000
@@ -22,6 +22,7 @@
 #include <config.h>
 #endif
 
+#include <string.h>
 #include <libgnome/gnome-i18n.h>
 #include <glade/glade.h>
 #include <gtk/gtk.h>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]