From 1debab5caee4aa044ceb9d75659111aee8b706c8 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Wed, 19 Nov 2025 20:39:12 -0800 Subject: [PATCH] About dialog: Use the environment variable names for user directory labels. Instead of capitalized versions of the variables in gnc-filepath-utils. The environment variables are documented in the wiki and are what the user can change. --- libgnucash/core-utils/gnc-filepath-utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgnucash/core-utils/gnc-filepath-utils.cpp b/libgnucash/core-utils/gnc-filepath-utils.cpp index ede4b9d3d1..7c62bf8c96 100644 --- a/libgnucash/core-utils/gnc-filepath-utils.cpp +++ b/libgnucash/core-utils/gnc-filepath-utils.cpp @@ -1313,8 +1313,8 @@ gnc_list_all_paths () gnc_filepath_init (); return { - { "GNC_USERDATA_DIR", gnc_userdata_home_str.c_str(), true}, - { "GNC_USERCONFIG_DIR", gnc_userconfig_home_str.c_str(), true }, + { "GNC_DATA_HOME", gnc_userdata_home_str.c_str(), true}, + { "GNC_CONFIG_HOME", gnc_userconfig_home_str.c_str(), true }, { "GNC_BIN", g_getenv ("GNC_BIN"), false }, { "GNC_LIB", g_getenv ("GNC_LIB"), false }, { "GNC_CONF", g_getenv ("GNC_CONF"), false },