diff options
author | Sean Gao <sean.gao@sun.com> | 2003-05-12 16:54:42 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-05-12 16:54:42 +0800 |
commit | bd75c866f537572abcda1ad1efe7987d0c534c64 (patch) | |
tree | c4910769ca2d13a04da3a8ce67a90a2cde657755 /addressbook | |
parent | 2322e0ef8bf3212f7a10a72648118680c0b0f4aa (diff) | |
download | gsoc2013-evolution-bd75c866f537572abcda1ad1efe7987d0c534c64.tar.gz gsoc2013-evolution-bd75c866f537572abcda1ad1efe7987d0c534c64.tar.zst gsoc2013-evolution-bd75c866f537572abcda1ad1efe7987d0c534c64.zip |
terminate g_build_filename with NULL.
2003-05-12 Sean Gao <sean.gao@sun.com>
* gui/contact-list-editor/e-contact-list-editor.c
(e_contact_list_editor_init): terminate g_build_filename with
NULL.
svn path=/trunk/; revision=21151
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-editor.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 45bc8aa89e..5863a2736b 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2003-05-12 Sean Gao <sean.gao@sun.com> + + * gui/contact-list-editor/e-contact-list-editor.c + (e_contact_list_editor_init): terminate g_build_filename with + NULL. + 2003-05-11 Chris Toshok <toshok@ximian.com> [ fixes bug #42048 ] diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c index 0ef87dc5a1..029e7fc06e 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -303,7 +303,7 @@ e_contact_list_editor_init (EContactListEditor *editor) G_CALLBACK (app_delete_event_cb), editor); /* set the icon */ - icon_path = g_build_filename (EVOLUTION_IMAGESDIR, "contact-list-16.png"); + icon_path = g_build_filename (EVOLUTION_IMAGESDIR, "contact-list-16.png", NULL); gnome_window_icon_set_from_file (GTK_WINDOW (editor->app), icon_path); g_free (icon_path); } |