diff options
author | Veerapuram Varadhan <vvaradan@src.gnome.org> | 2006-02-14 21:33:34 +0800 |
---|---|---|
committer | Veerapuram Varadhan <vvaradan@src.gnome.org> | 2006-02-14 21:33:34 +0800 |
commit | 324ea588c21783c5daac0b64ed4be112216fceba (patch) | |
tree | 09a7a7ae239234b7cdf8af57a7080dea074282aa /plugins | |
parent | 4fd893bdae9cd6d1f9473295c61d39aeb9fb89ed (diff) | |
download | gsoc2013-evolution-324ea588c21783c5daac0b64ed4be112216fceba.tar.gz gsoc2013-evolution-324ea588c21783c5daac0b64ed4be112216fceba.tar.zst gsoc2013-evolution-324ea588c21783c5daac0b64ed4be112216fceba.zip |
A typo fix from gfree to g_free.
* itip-formatter.c (itip_formatter_page_factory): A typo fix from
gfree to g_free.
svn path=/trunk/; revision=31519
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/itip-formatter/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/itip-formatter/itip-formatter.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog index 317c40bd3d..88b8ca4411 100644 --- a/plugins/itip-formatter/ChangeLog +++ b/plugins/itip-formatter/ChangeLog @@ -1,3 +1,8 @@ +2006-02-14 Veerapuram Varadhan <vvaradhan@novell.com> + + * itip-formatter.c (itip_formatter_page_factory): A typo fix from + gfree to g_free. + 2006-02-12 Karsten Bräckelmann <guenther@rudersport.de> * itip-formatter.c (itip_formatter_page_factory): diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c index 6b80b69e24..9668e51c45 100644 --- a/plugins/itip-formatter/itip-formatter.c +++ b/plugins/itip-formatter/itip-formatter.c @@ -2003,7 +2003,7 @@ itip_formatter_page_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data) frame_label = gtk_label_new (""); str = g_strdup_printf ("<span weight=\"bold\">%s</span>", _("Conflict Search")); gtk_label_set_markup (GTK_LABEL (frame_label), str); - gfree (str); + g_free (str); GTK_MISC (frame_label)->xalign = 0.0; gtk_box_pack_start (GTK_BOX (frame), frame_label, FALSE, FALSE, 0); |