2008-04-08  Matthew Barnes  <mbarnes@redhat.com>

	** Fixes bug #525966

	* e-composer-actions.c (action_close_cb):
	Fix a boolean error in detecting unsaved changes.


svn path=/trunk/; revision=35344
This commit is contained in:
Matthew Barnes
2008-04-08 15:50:01 +00:00
committed by Matthew Barnes
parent f66d305260
commit fea1867db3
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-04-08 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #525966
* e-composer-actions.c (action_close_cb):
Fix a boolean error in detecting unsaved changes.
2008-04-07 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #328146

View File

@ -125,7 +125,7 @@ action_close_cb (GtkAction *action,
editor = GTKHTML_EDITOR (composer);
if (!gtkhtml_editor_get_changed (editor) &&
!e_composer_autosave_get_saved (composer)) {
e_composer_autosave_get_saved (composer)) {
gtk_widget_destroy (GTK_WIDGET (composer));
return;