Remove stray %

Thu Mar 31 23:09:09 2005  Soeren Sandmann  <sandmann@redhat.com>

        * sysprof.c (build_gui): Remove stray %
This commit is contained in:
Soeren Sandmann
2005-04-03 03:36:59 +00:00
committed by Søren Sandmann Pedersen
parent 5f280920c5
commit bef6878e61
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Mar 31 23:09:09 2005 Soeren Sandmann <sandmann@redhat.com>
* sysprof.c (build_gui): Remove stray %
Thu Mar 31 21:18:13 2005 Søren Sandmann <sandmann@redhat.com>
* treeviewutils.c (add_double_format_column): Right justify numbers

View File

@ -1114,7 +1114,7 @@ build_gui (Application *app)
/* object view */
app->object_view = (GtkTreeView *)glade_xml_get_widget (xml, "object_view");
% col = add_plain_text_column (app->object_view, _("Functions"), OBJECT_NAME);
col = add_plain_text_column (app->object_view, _("Functions"), OBJECT_NAME);
add_double_format_column (app->object_view, _("Self"), OBJECT_SELF, "%.2f ");
add_double_format_column (app->object_view, _("Total"), OBJECT_TOTAL, "%.2f ");
selection = gtk_tree_view_get_selection (app->object_view);