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.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/598#discussion_r134090688