LarsGit223 commented on this pull request.
abs_path = get_combined_path(prj->filename, *file);
+ if (abs_path != NULL) + { + wb_project_add_bookmark_int(prj, abs_path); + g_free(abs_path); + } + file++; + } + g_strfreev(bookmarks_strings); + } + + /* Load project dirs */ + for (index = 1 ; index < 1025 ; index++) + { + g_snprintf(key, sizeof(key), "Dir%u-BaseDir", index); + if (!g_key_file_has_key (kf, "Workbench", key, NULL))
Removed it.