diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-06-20 04:15:02 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-06-20 04:15:02 +0800 |
commit | 07d08508957460388001d78fd268c1aa54b5fe2d (patch) | |
tree | 30deb607fe40fb320138bcfac77d1bd2af33bf06 /my-evolution | |
parent | 7221f00e17acf44646f44b44896f736315d4a12a (diff) | |
download | gsoc2013-evolution-07d08508957460388001d78fd268c1aa54b5fe2d.tar gsoc2013-evolution-07d08508957460388001d78fd268c1aa54b5fe2d.tar.gz gsoc2013-evolution-07d08508957460388001d78fd268c1aa54b5fe2d.tar.bz2 gsoc2013-evolution-07d08508957460388001d78fd268c1aa54b5fe2d.tar.lz gsoc2013-evolution-07d08508957460388001d78fd268c1aa54b5fe2d.tar.xz gsoc2013-evolution-07d08508957460388001d78fd268c1aa54b5fe2d.tar.zst gsoc2013-evolution-07d08508957460388001d78fd268c1aa54b5fe2d.zip |
(do_summary_print): Do not destroy preview_widget
when returning from gtk_dialog_run() since it's unset at that
point. [#44798]
svn path=/trunk/; revision=21487
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 6 | ||||
-rw-r--r-- | my-evolution/e-summary.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index b663fe4e8d..4302a29e51 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,9 @@ +2003-06-19 Ettore Perazzoli <ettore@ximian.com> + + * e-summary.c (do_summary_print): Do not destroy preview_widget + when returning from gtk_dialog_run() since it's unset at that + point. [#44798] + 2003-06-13 Larry Ewing <lewing@ximian.com> * e-summary.c (e_summary_url_requested): free the filename. diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c index 29ce61b28c..1baba182ec 100644 --- a/my-evolution/e-summary.c +++ b/my-evolution/e-summary.c @@ -631,8 +631,6 @@ do_summary_print (ESummary *summary) break; default: - if (preview_widget != NULL) - gtk_widget_destroy (preview_widget); gtk_widget_destroy (gpd); return; } |