diff --git a/ChangeLog b/ChangeLog index faa3c767..8447df77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Mar 10 16:37:52 2005 Søren Sandmann + + * sysprof.c (build_gui): s/Cummulative/Cumulative/. Pointed out by + Ian McIntosh. + Mon Mar 7 14:47:09 2005 Søren Sandmann * README: Add note that you need to compile the module with diff --git a/sysprof.c b/sysprof.c index d387cad7..2883d60c 100644 --- a/sysprof.c +++ b/sysprof.c @@ -891,7 +891,7 @@ build_gui (Application *app) app->descendants_view = (GtkTreeView *)glade_xml_get_widget (xml, "descendants_view"); col = add_plain_text_column (app->descendants_view, _("Name"), DESCENDANTS_NAME); add_double_format_column (app->descendants_view, _("Self"), DESCENDANTS_SELF, "%.2f"); - add_double_format_column (app->descendants_view, _("Cummulative"), DESCENDANTS_NON_RECURSE, "%.2f"); + add_double_format_column (app->descendants_view, _("Cumulative"), DESCENDANTS_NON_RECURSE, "%.2f"); g_signal_connect (app->descendants_view, "row-activated", G_CALLBACK (on_descendants_row_activated), app);