/* Loads the .mc.tree file */ static void load_tree (WTree *tree) { tree_store_load (); tree->selected_ptr = tree->store->tree_first; tree_chdir (tree, home_dir); }
static void load_tree (WTree * tree) { tree_store_load (); tree->selected_ptr = tree->store->tree_first; tree_chdir (tree, mc_config_get_home_dir ()); }
static void load_tree (WTree * tree) { vfs_path_t *vpath; tree_store_load (); tree->selected_ptr = tree->store->tree_first; vpath = vfs_path_from_str (mc_config_get_home_dir ()); tree_chdir (tree, vpath); vfs_path_free (vpath); }