diff options
Diffstat (limited to 'src/proctable.cpp')
-rw-r--r-- | src/proctable.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/proctable.cpp b/src/proctable.cpp index afa14d1..f4e1e54 100644 --- a/src/proctable.cpp +++ b/src/proctable.cpp @@ -695,14 +695,14 @@ insert_info_to_tree (ProcInfo *info, ProcData *procdata, bool forced = false) else gtk_tree_store_insert (GTK_TREE_STORE (model), &info->node, NULL, 0); - gtk_tree_store_set (GTK_TREE_STORE (model), &info->node, - COL_POINTER, info, - COL_NAME, info->name, - COL_ARGS, info->arguments, - COL_TOOLTIP, info->tooltip, - COL_PID, info->pid, - COL_SECURITYCONTEXT, info->security_context, - -1); + gtk_tree_store_set (GTK_TREE_STORE (model), &info->node, + COL_POINTER, info, + COL_NAME, info->name, + COL_ARGS, info->arguments, + COL_TOOLTIP, info->tooltip, + COL_PID, info->pid, + COL_SECURITYCONTEXT, info->security_context, + -1); procdata->pretty_table.set_icon(*info); |