1From 64b56e75a54a9fa3f37c7686be97a5c8818413a4 Mon Sep 17 00:00:00 2001 2From: Rico Tzschichholz <ricotz@ubuntu.com> 3Date: Tue, 30 Nov 2021 15:31:31 +0100 4Subject: [PATCH 2/2] Fix accessibility issues with initializer of constants 5 6Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/geary/-/commit/9bd4c82952a0a2c3308c5cc86c0b85650c1fb484] 7Signed-off-by: Khem Raj <raj.khem@gmail.com> 8--- 9 src/client/application/application-client.vala | 14 +++++++------- 10 1 file changed, 7 insertions(+), 7 deletions(-) 11 12diff --git a/src/client/application/application-client.vala b/src/client/application/application-client.vala 13index 6ce19ce2..e6ba8533 100644 14--- a/src/client/application/application-client.vala 15+++ b/src/client/application/application-client.vala 16@@ -8,16 +8,16 @@ 17 18 // Defined by CMake build script. 19 extern const string GETTEXT_PACKAGE; 20-extern const string _APP_ID; 21-extern const string _BUILD_ROOT_DIR; 22-extern const string _GSETTINGS_DIR; 23-extern const string _INSTALL_PREFIX; 24-extern const string _NAME_SUFFIX; 25+public extern const string _APP_ID; 26+public extern const string _BUILD_ROOT_DIR; 27+public extern const string _GSETTINGS_DIR; 28+public extern const string _INSTALL_PREFIX; 29+public extern const string _NAME_SUFFIX; 30 extern const string _PLUGINS_DIR; 31 extern const string _PROFILE; 32 extern const string _REVNO; 33-extern const string _SOURCE_ROOT_DIR; 34-extern const string _VERSION; 35+public extern const string _SOURCE_ROOT_DIR; 36+public extern const string _VERSION; 37 extern const string _WEB_EXTENSIONS_DIR; 38 39 40-- 412.35.1 42 43