summaryrefslogtreecommitdiffstats
path: root/mail/evolution/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-07-14 05:44:30 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-07-14 05:44:30 +0800
commitb8b6d7ac8525d7d0eddaddc4065c93ba2cafb4f2 (patch)
tree9ff14468fa92f51322e04790f6c0c609f11900a7 /mail/evolution/files
parent7a6a34d6f30d11466b400fa546a0bd04b40500c3 (diff)
downloadmarcuscom-ports-b8b6d7ac8525d7d0eddaddc4065c93ba2cafb4f2.tar
marcuscom-ports-b8b6d7ac8525d7d0eddaddc4065c93ba2cafb4f2.tar.gz
marcuscom-ports-b8b6d7ac8525d7d0eddaddc4065c93ba2cafb4f2.tar.bz2
marcuscom-ports-b8b6d7ac8525d7d0eddaddc4065c93ba2cafb4f2.tar.lz
marcuscom-ports-b8b6d7ac8525d7d0eddaddc4065c93ba2cafb4f2.tar.xz
marcuscom-ports-b8b6d7ac8525d7d0eddaddc4065c93ba2cafb4f2.tar.zst
marcuscom-ports-b8b6d7ac8525d7d0eddaddc4065c93ba2cafb4f2.zip
Update to 2.3.5.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4232 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'mail/evolution/files')
-rw-r--r--mail/evolution/files/patch-a11y_e-table_gal-a11y-e-cell-text.c30
-rw-r--r--mail/evolution/files/patch-a11y_e-table_gal-a11y-e-cell-vbox.c46
-rw-r--r--mail/evolution/files/patch-calendar_gui_gnome-cal.c13
-rw-r--r--mail/evolution/files/patch-plugins_proxy-login_proxy-login.c10
4 files changed, 99 insertions, 0 deletions
diff --git a/mail/evolution/files/patch-a11y_e-table_gal-a11y-e-cell-text.c b/mail/evolution/files/patch-a11y_e-table_gal-a11y-e-cell-text.c
new file mode 100644
index 000000000..4006abeb3
--- /dev/null
+++ b/mail/evolution/files/patch-a11y_e-table_gal-a11y-e-cell-text.c
@@ -0,0 +1,30 @@
+--- a11y/e-table/gal-a11y-e-cell-text.c.orig Wed Jul 13 02:57:57 2005
++++ a11y/e-table/gal-a11y-e-cell-text.c Wed Jul 13 02:58:28 2005
+@@ -152,11 +152,12 @@ ect_get_character_at_offset (AtkText *te
+ GalA11yECell *gaec = GAL_A11Y_E_CELL (text);
+ gunichar ret_val;
+ gchar *at_offset;
++ gchar *full_text;
+
+ if (!ect_check (text))
+ return -1;
+
+- gchar *full_text = e_cell_text_get_text_by_view (gaec->cell_view, gaec->model_col, gaec->row);
++ full_text = e_cell_text_get_text_by_view (gaec->cell_view, gaec->model_col, gaec->row);
+ at_offset = g_utf8_offset_to_pointer (full_text, offset);
+ ret_val = g_utf8_get_char_validated (at_offset, -1);
+ g_free (full_text);
+@@ -236,11 +237,12 @@ ect_get_character_count (AtkText *text)
+ {
+ GalA11yECell *gaec = GAL_A11Y_E_CELL (text);
+ gint ret_val;
++ gchar *full_text;
+
+ if (!ect_check (text))
+ return -1;
+
+- gchar *full_text = e_cell_text_get_text_by_view (gaec->cell_view, gaec->model_col, gaec->row);
++ full_text = e_cell_text_get_text_by_view (gaec->cell_view, gaec->model_col, gaec->row);
+
+ ret_val = g_utf8_strlen (full_text, -1);
+ g_free (full_text);
diff --git a/mail/evolution/files/patch-a11y_e-table_gal-a11y-e-cell-vbox.c b/mail/evolution/files/patch-a11y_e-table_gal-a11y-e-cell-vbox.c
new file mode 100644
index 000000000..852d561b6
--- /dev/null
+++ b/mail/evolution/files/patch-a11y_e-table_gal-a11y-e-cell-vbox.c
@@ -0,0 +1,46 @@
+--- a11y/e-table/gal-a11y-e-cell-vbox.c.orig Wed Jul 13 02:59:24 2005
++++ a11y/e-table/gal-a11y-e-cell-vbox.c Wed Jul 13 03:00:36 2005
+@@ -35,8 +35,9 @@ static AtkComponentIface *component_pare
+ static gint
+ ecv_get_n_children (AtkObject *a11y)
+ {
++ GalA11yECellVbox *gaev;
+ g_return_val_if_fail (GAL_A11Y_IS_E_CELL_VBOX (a11y), 0);
+- GalA11yECellVbox *gaev = GAL_A11Y_E_CELL_VBOX (a11y);
++ gaev = GAL_A11Y_E_CELL_VBOX (a11y);
+ return (gaev->a11y_subcell_count);
+ }
+
+@@ -68,9 +69,10 @@ ecv_ref_child (AtkObject *a11y, gint i)
+ if (i < gaev->a11y_subcell_count) {
+ if (gaev->a11y_subcells[i] == NULL) {
+ gint model_col, row;
++ ECellView *subcell_view;
+ row = gaec->row;
+ model_col = ecvv->model_cols[i];
+- ECellView *subcell_view = ecvv->subcell_views[i];
++ subcell_view = ecvv->subcell_views[i];
+ ret = gal_a11y_e_cell_registry_get_object (NULL,
+ gaec->item,
+ subcell_view,
+@@ -204,14 +206,17 @@ AtkObject *gal_a11y_e_cell_vbox_new (ETa
+ int row)
+ {
+ AtkObject *a11y;
++ GalA11yECell *gaec;
++ GalA11yECellVbox *gaev;
++ ECellVboxView *ecvv;
+
+ a11y = g_object_new (gal_a11y_e_cell_vbox_get_type (), NULL);
+
+ gal_a11y_e_cell_construct (a11y, item, cell_view, parent, model_col, view_col, row);
+
+- GalA11yECell *gaec = GAL_A11Y_E_CELL (a11y);
+- GalA11yECellVbox *gaev = GAL_A11Y_E_CELL_VBOX (a11y);
+- ECellVboxView *ecvv = (ECellVboxView *) (gaec->cell_view);
++ gaec = GAL_A11Y_E_CELL (a11y);
++ gaev = GAL_A11Y_E_CELL_VBOX (a11y);
++ ecvv = (ECellVboxView *) (gaec->cell_view);
+ gaev->a11y_subcell_count = ecvv->subcell_view_count;
+ gaev->a11y_subcells = g_malloc0 (sizeof(AtkObject *)*gaev->a11y_subcell_count);
+ return a11y;
diff --git a/mail/evolution/files/patch-calendar_gui_gnome-cal.c b/mail/evolution/files/patch-calendar_gui_gnome-cal.c
new file mode 100644
index 000000000..1187e3ed9
--- /dev/null
+++ b/mail/evolution/files/patch-calendar_gui_gnome-cal.c
@@ -0,0 +1,13 @@
+--- calendar/gui/gnome-cal.c.orig Wed Jul 13 03:25:16 2005
++++ calendar/gui/gnome-cal.c Wed Jul 13 03:25:38 2005
+@@ -3409,8 +3409,9 @@ gnome_calendar_edit_appointment (GnomeCa
+ return;
+
+ for (l = gcal->priv->clients_list[E_CAL_SOURCE_TYPE_EVENT]; l != NULL; l = l->next) {
++ ESource *client_src;
+ client = l->data;
+- ESource *client_src = e_cal_get_source (client);
++ client_src = e_cal_get_source (client);
+
+ if (!strcmp (src_uid, e_source_peek_uid (client_src)))
+ break;
diff --git a/mail/evolution/files/patch-plugins_proxy-login_proxy-login.c b/mail/evolution/files/patch-plugins_proxy-login_proxy-login.c
new file mode 100644
index 000000000..f2fb5c6d4
--- /dev/null
+++ b/mail/evolution/files/patch-plugins_proxy-login_proxy-login.c
@@ -0,0 +1,10 @@
+--- plugins/proxy-login/proxy-login.c.orig Wed Jul 13 17:26:56 2005
++++ plugins/proxy-login/proxy-login.c Wed Jul 13 17:27:15 2005
+@@ -237,7 +237,6 @@ proxy_login_get_cnc (EAccount *account)
+ {
+ EGwConnection *cnc;
+ CamelURL *url;
+- url = camel_url_new (account->source->url, NULL);
+ char *uri = NULL, *failed_auth = NULL, *key = NULL, *prompt = NULL, *password = NULL;
+ const char *use_ssl, *soap_port;
+