elextr commented on this pull request.


> @@ -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 or view it on GitHub:
https://github.com/geany/geany/pull/1163#pullrequestreview-33743035

Reply via email to