@LarsGit223 commented on this pull request.
In workbench/src/wb_project.c:
> + + return success; +} + + +/** Create a new empty project. + * + * @return Address of the new structure. + * + **/ +WB_PROJECT *wb_project_new(gchar *filename) +{ + WB_PROJECT *new_prj; + + new_prj = g_new(WB_PROJECT, 1); + memset(new_prj, 0, sizeof(*new_prj));
Done.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.