@LarsGit223 commented on this pull request.


In workbench/src/wb_project.c:

> +					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.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.