LarsGit223 commented on this pull request.
+static void wb_project_dir_collect_source_files(gchar *filename, TMSourceFile *sf, gpointer user_data)
+{ + GPtrArray *array = user_data; + + if (sf != NULL) + g_ptr_array_add(array, sf); +} + + +/** Get the name of a project dir. + * + * @param directory The project dir + * @return The name + * + **/ +gchar *wb_project_dir_get_name (WB_PROJECT_DIR *directory)
Fixed.