diff options
author | Not Zed <NotZed@Ximian.com> | 2003-01-09 11:08:06 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-01-09 11:08:06 +0800 |
commit | 6b8b8d8e372f223f28774984e9a230ccf16e7eb0 (patch) | |
tree | bab9ed3615e4eaa06dcc8092a7d6b2fbb55fcdbe | |
parent | 4698808a25ff6131a441c1bc0cfa40396e524da5 (diff) | |
download | gsoc2013-evolution-6b8b8d8e372f223f28774984e9a230ccf16e7eb0.tar gsoc2013-evolution-6b8b8d8e372f223f28774984e9a230ccf16e7eb0.tar.gz gsoc2013-evolution-6b8b8d8e372f223f28774984e9a230ccf16e7eb0.tar.bz2 gsoc2013-evolution-6b8b8d8e372f223f28774984e9a230ccf16e7eb0.tar.lz gsoc2013-evolution-6b8b8d8e372f223f28774984e9a230ccf16e7eb0.tar.xz gsoc2013-evolution-6b8b8d8e372f223f28774984e9a230ccf16e7eb0.tar.zst gsoc2013-evolution-6b8b8d8e372f223f28774984e9a230ccf16e7eb0.zip |
dont unref the pango context, get_context() doesn't create a ref.
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.
svn path=/trunk/; revision=19303
-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); } |