@elextr 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,
Currently Geany only requires 2.32, but this is a 2.44 function.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.