[evolution-patches] 61572
- From: JP Rosevear <jpr novell com>
- To: evolution-patches ximian com
- Subject: [evolution-patches] 61572
- Date: Wed, 14 Jul 2004 22:55:41 -0400
-JP
--
JP Rosevear <jpr novell com>
Novell, Inc.
? 60678.patch
? 61572.patch
? primary-uncheck.patch
? gui/primary-uncheck.patch
? gui/scroll.patch
? gui/select-auto.patch
? gui/select.patch
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/calendar/ChangeLog,v
retrieving revision 1.2445
diff -u -r1.2445 ChangeLog
--- ChangeLog 14 Jul 2004 02:20:55 -0000 1.2445
+++ ChangeLog 15 Jul 2004 02:55:15 -0000
@@ -1,3 +1,14 @@
+2004-07-14 JP Rosevear <jpr novell com>
+
+ Fixes #61572
+
+ * gui/dialogs/schedule-page.c (times_changed_cb): call notify
+ changed
+
+ * gui/dialogs/comp-editor.c (page_summary_changed_cb): no need to
+ mark the editor changed here, it doesn't do the right thing anyhow
+ (page_dates_changed_cb): ditto
+
2004-07-12 JP Rosevear <jpr novell com>
Fixes #57287, 58748
Index: gui/dialogs/comp-editor.c
===================================================================
RCS file: /cvs/gnome/evolution/calendar/gui/dialogs/comp-editor.c,v
retrieving revision 1.107
diff -u -r1.107 comp-editor.c
--- gui/dialogs/comp-editor.c 23 Jun 2004 17:38:39 -0000 1.107
+++ gui/dialogs/comp-editor.c 15 Jul 2004 02:55:15 -0000
@@ -1330,8 +1330,6 @@
if (obj != l->data)
comp_editor_page_set_summary (l->data, summary);
- priv->changed = TRUE;
-
if (!priv->warned && priv->existing_org && !priv->user_org) {
e_notice (editor, GTK_MESSAGE_INFO,
_("Changes made to this item may be discarded if an update arrives"));
@@ -1355,8 +1353,6 @@
for (l = priv->pages; l != NULL; l = l->next)
if (obj != l->data)
comp_editor_page_set_dates (l->data, dates);
-
- priv->changed = TRUE;
if (!priv->warned && priv->existing_org && !priv->user_org) {
e_notice (editor, GTK_MESSAGE_INFO,
Index: gui/dialogs/schedule-page.c
===================================================================
RCS file: /cvs/gnome/evolution/calendar/gui/dialogs/schedule-page.c,v
retrieving revision 1.30
diff -u -r1.30 schedule-page.c
--- gui/dialogs/schedule-page.c 15 Jun 2004 11:57:17 -0000 1.30
+++ gui/dialogs/schedule-page.c 15 Jul 2004 02:55:16 -0000
@@ -406,11 +406,9 @@
priv = spage->priv;
- g_signal_connect((priv->sel),
- "changed", G_CALLBACK (times_changed_cb), spage);
+ g_signal_connect (priv->sel, "changed", G_CALLBACK (times_changed_cb), spage);
return TRUE;
-
}
@@ -544,6 +542,6 @@
dates.due = NULL;
dates.complete = NULL;
- comp_editor_page_notify_dates_changed (COMP_EDITOR_PAGE (spage),
- &dates);
+ comp_editor_page_notify_dates_changed (COMP_EDITOR_PAGE (spage), &dates);
+ comp_editor_page_notify_changed (COMP_EDITOR_PAGE (spage));
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]