diff options
| -rw-r--r-- | shell/shell.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/shell/shell.c b/shell/shell.c index 83677ea1..43b72c1c 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -1242,11 +1242,11 @@ group_handle_normal(GKeyFile * key_file, ShellModuleEntry * entry,              *(strchr(flags+1, '$')+1) = 0;              gtk_tree_store_set(store, &child, INFO_TREE_COL_NAME, -                _(name), INFO_TREE_COL_DATA, flags, -1); +                name, INFO_TREE_COL_DATA, flags, -1);              g_free(flags);          } else { -            gtk_tree_store_set(store, &child, INFO_TREE_COL_NAME, _(key), +            gtk_tree_store_set(store, &child, INFO_TREE_COL_NAME, key,                  INFO_TREE_COL_DATA, NULL, -1);          } | 
