@konsolebox commented on this pull request.
In src/document.c:
> @@ -1565,6 +1565,138 @@ void document_open_files(const GSList *filenames, gboolean readonly, GeanyFilety } +static GFileEnumerator *enumerate_children(const char *dir_path, GError **error) +{ + GFile *file = g_file_new_for_path(dir_path); + + const gchar *attributes = G_FILE_ATTRIBUTE_STANDARD_TYPE "," G_FILE_ATTRIBUTE_STANDARD_NAME "," + G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME "," G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE; + + GFileEnumerator *enumerator = g_file_enumerate_children(file, attributes,
What function, g_file_enumerate_children? It does exist in that version.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.