From 4fbc5492eab3e7116ea7a8a820fab3b170e59e04 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Sat, 30 Dec 2017 17:36:39 +0100 Subject: =?UTF-8?q?proctable.cpp:=20Fix=20build=20warning:=20this=20?= =?UTF-8?q?=E2=80=98else=E2=80=99=20clause=20does=20not=20guard...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ --- src/proctable.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src') 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); -- cgit v1.2.1