From 1ad692b4630fcb49b5052d7cc1e809c94b900d96 Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Sun, 11 Jun 2023 14:41:30 -0400 Subject: [PATCH] Fix #121 (failure to compile with vala 0.55.1) (#122) Make create_exec_filename public so it is not less accessible than OPTIONS, the value of which contains it. --- src/Application.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.vala b/src/Application.vala index 118e88d..45212a1 100755 --- a/src/Application.vala +++ b/src/Application.vala @@ -26,7 +26,7 @@ public class AppEditor.Application : Gtk.Application { return Gtk.check_version (3, 22, 0) == null; } - private static string? create_exec_filename; + public static string? create_exec_filename; private MainWindow? window = null;