From a13bd3d0bd007be190a7fa1460b15be63dd62d84 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Wed, 19 Mar 2025 17:38:50 -0400 Subject: [PATCH] chore: rename lib/gui/dot_env => lib/gui/DotEnv --- src/apps/deskflow-gui/main.cpp | 2 +- src/lib/gui/CMakeLists.txt | 4 ++-- src/lib/gui/{dotenv.cpp => DotEnv.cpp} | 2 +- src/lib/gui/{dotenv.h => DotEnv.h} | 0 src/test/integtests/gui/dotenv_tests.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename src/lib/gui/{dotenv.cpp => DotEnv.cpp} (99%) rename src/lib/gui/{dotenv.h => DotEnv.h} (100%) diff --git a/src/apps/deskflow-gui/main.cpp b/src/apps/deskflow-gui/main.cpp index 77b8b5cefe..b381caa02f 100644 --- a/src/apps/deskflow-gui/main.cpp +++ b/src/apps/deskflow-gui/main.cpp @@ -10,8 +10,8 @@ #include "common/constants.h" #include "gui/Constants.h" #include "gui/Diagnostic.h" +#include "gui/DotEnv.h" #include "gui/Logger.h" -#include "gui/dotenv.h" #include "gui/messages.h" #include "gui/string_utils.h" #include "gui/style_utils.h" diff --git a/src/lib/gui/CMakeLists.txt b/src/lib/gui/CMakeLists.txt index 45bf279d7f..4c9d3e6d6a 100644 --- a/src/lib/gui/CMakeLists.txt +++ b/src/lib/gui/CMakeLists.txt @@ -18,8 +18,8 @@ add_library(${target} STATIC Constants.h Diagnostic.cpp Diagnostic.h - dotenv.cpp - dotenv.h + DotEnv.cpp + DotEnv.h env_vars.h FileTail.cpp FileTail.h diff --git a/src/lib/gui/dotenv.cpp b/src/lib/gui/DotEnv.cpp similarity index 99% rename from src/lib/gui/dotenv.cpp rename to src/lib/gui/DotEnv.cpp index ea63a77648..05d4bba50f 100644 --- a/src/lib/gui/dotenv.cpp +++ b/src/lib/gui/DotEnv.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception */ -#include "dotenv.h" +#include "DotEnv.h" #include "common/Settings.h" diff --git a/src/lib/gui/dotenv.h b/src/lib/gui/DotEnv.h similarity index 100% rename from src/lib/gui/dotenv.h rename to src/lib/gui/DotEnv.h diff --git a/src/test/integtests/gui/dotenv_tests.cpp b/src/test/integtests/gui/dotenv_tests.cpp index e599014796..d9a1a8ff30 100644 --- a/src/test/integtests/gui/dotenv_tests.cpp +++ b/src/test/integtests/gui/dotenv_tests.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception */ -#include "gui/dotenv.h" +#include "gui/DotEnv.h" #include #include