Free the custom paper list. (#403267, Felix Riemann)

2007-04-29  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkpagesetupunixdialog.c (gtk_page_setup_unix_dialog_finalize):
        Free the custom paper list.  (#403267, Felix Riemann)



svn path=/branches/gtk-2-10/; revision=17696
This commit is contained in:
Matthias Clasen
2007-04-29 05:07:33 +00:00
committed by Matthias Clasen
parent d84f87dc1b
commit 3098de7054
2 changed files with 13 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
2007-04-29 Matthias Clasen <mclasen@redhat.com>
Merge from trunk:
* gtk/gtkpagesetupunixdialog.c (gtk_page_setup_unix_dialog_finalize):
Free the custom paper list. (#403267, Felix Riemann)
2007-04-29 Matthias Clasen <mclasen@redhat.com>
Merge from trunk:

View File

@@ -386,6 +386,12 @@ gtk_page_setup_unix_dialog_finalize (GObject *object)
priv->page_setup_list = NULL;
}
if (priv->custom_paper_list)
{
g_object_unref (priv->custom_paper_list);
priv->custom_paper_list = NULL;
}
if (priv->print_settings)
{
g_object_unref (priv->print_settings);