libsysprof-ui: add mark hits to details

This commit is contained in:
Christian Hergert
2019-05-21 22:22:58 -07:00
parent 3321308c4a
commit 35590fe315
4 changed files with 26 additions and 3 deletions

View File

@ -199,7 +199,8 @@ sysprof_details_view_add_mark (SysprofDetailsView *self,
const gchar *mark,
gint64 min,
gint64 max,
gint64 avg)
gint64 avg,
gint64 hits)
{
GtkTreeIter iter;
@ -211,5 +212,6 @@ sysprof_details_view_add_mark (SysprofDetailsView *self,
1, min ? _sysprof_format_duration (min) : "",
2, max ? _sysprof_format_duration (max) : "",
3, avg ? _sysprof_format_duration (avg) : "",
4, hits,
-1);
}