diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-07 15:38:30 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-07 15:38:30 +0800 |
commit | b89320e2f3d0a8c69dd6ecfd33b125481cd837d8 (patch) | |
tree | 441c0942eadeccf13e244ab3df496ca7ef5dabc2 /addressbook/printing/e-contact-print-style-editor.c | |
parent | b59fb51176c10c48865572b27d697c6cc51358d3 (diff) | |
download | gsoc2013-evolution-b89320e2f3d0a8c69dd6ecfd33b125481cd837d8.tar.gz gsoc2013-evolution-b89320e2f3d0a8c69dd6ecfd33b125481cd837d8.tar.zst gsoc2013-evolution-b89320e2f3d0a8c69dd6ecfd33b125481cd837d8.zip |
port this to gnome2/gnomeprint2.
2002-11-06 Chris Toshok <toshok@ximian.com>
* printing/e-contact-print-envelope.c: port this to
gnome2/gnomeprint2.
* printing/e-contact-print-style-editor.c: same.
* printing/e-contact-print.c: same.
* printing/test-contact-print-style-editor.c: same.
* printing/test-print.c: same.
* printing/e-contact-print.glade: libglade-convert to libglade-2.
* printing/Makefile.am (contact_print_test_LDADD)
(contact_print_style_editor_test_LDADD): remove libcamel.la from
these for the time being to get things linking.
svn path=/trunk/; revision=18628
Diffstat (limited to 'addressbook/printing/e-contact-print-style-editor.c')
-rw-r--r-- | addressbook/printing/e-contact-print-style-editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/printing/e-contact-print-style-editor.c b/addressbook/printing/e-contact-print-style-editor.c index f05a508ed8..9267fc0c99 100644 --- a/addressbook/printing/e-contact-print-style-editor.c +++ b/addressbook/printing/e-contact-print-style-editor.c @@ -101,7 +101,7 @@ e_contact_print_style_editor_init (EContactPrintStyleEditor *e_contact_print_sty GladeXML *gui; /* e_contact_print_style_editor->card = NULL;*/ - gui = glade_xml_new (EVOLUTION_GLADEDIR "/e-contact-print.glade", NULL); + gui = glade_xml_new (EVOLUTION_GLADEDIR "/e-contact-print.glade", NULL, NULL); e_contact_print_style_editor->gui = gui; gtk_widget_reparent(glade_xml_get_widget(gui, "vbox-contact-print-style-editor"), GTK_WIDGET(e_contact_print_style_editor)); @@ -111,7 +111,7 @@ void e_contact_print_style_editor_destroy (GtkObject *object) { EContactPrintStyleEditor *e_contact_print_style_editor = E_CONTACT_PRINT_STYLE_EDITOR(object); - gtk_object_unref(GTK_OBJECT(e_contact_print_style_editor->gui)); + g_object_unref(e_contact_print_style_editor->gui); } GtkWidget* |