diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-settings-dialog.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 7fea99e757..e1d4bc95ac 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2003-01-08 Not Zed <NotZed@Ximian.com> + + * e-shell-settings-dialog.c (set_dialog_size): dont unref the + pango context, get_context() doesn't create a ref. + 2003-01-08 Ettore Perazzoli <ettore@ximian.com> * Makefile.am: Images are now in $(datadir)/evolution/images diff --git a/shell/e-shell-settings-dialog.c b/shell/e-shell-settings-dialog.c index 9a8e521856..cc6a35e4eb 100644 --- a/shell/e-shell-settings-dialog.c +++ b/shell/e-shell-settings-dialog.c @@ -74,7 +74,6 @@ set_dialog_size (EShellSettingsDialog *dialog) gtk_widget_set_size_request (GTK_WIDGET (dialog), width, height); - g_object_unref (context); g_object_unref (layout); pango_font_metrics_unref (metrics); } |