aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-04-08 23:50:01 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-04-08 23:50:01 +0800
commitfea1867db330edef4260cd057e1f73b61aacc6fa (patch)
tree7e7c8f89e503b5fce49348bf2ca47c6d66fb7478 /composer
parentf66d305260ab4cc7e44700e8e8c38d0c485ab091 (diff)
downloadgsoc2013-evolution-fea1867db330edef4260cd057e1f73b61aacc6fa.tar
gsoc2013-evolution-fea1867db330edef4260cd057e1f73b61aacc6fa.tar.gz
gsoc2013-evolution-fea1867db330edef4260cd057e1f73b61aacc6fa.tar.bz2
gsoc2013-evolution-fea1867db330edef4260cd057e1f73b61aacc6fa.tar.lz
gsoc2013-evolution-fea1867db330edef4260cd057e1f73b61aacc6fa.tar.xz
gsoc2013-evolution-fea1867db330edef4260cd057e1f73b61aacc6fa.tar.zst
gsoc2013-evolution-fea1867db330edef4260cd057e1f73b61aacc6fa.zip
** Fixes bug #525966
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
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog7
-rw-r--r--composer/e-composer-actions.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 509b472f7b..cec3eff342 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -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
diff --git a/composer/e-composer-actions.c b/composer/e-composer-actions.c
index 81cc2101d5..aeae508153 100644
--- a/composer/e-composer-actions.c
+++ b/composer/e-composer-actions.c
@@ -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;