diff options
author | saturneric <[email protected]> | 2024-01-18 13:47:17 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-18 13:47:17 +0000 |
commit | e8d604cf2924ab101c2a102c23d5028473289814 (patch) | |
tree | 8eb6eee373c0343b1836fac5aed79b9be83a67dd /src/core/function/GlobalSettingStation.cpp | |
parent | fix: add test cases and solve discovered issues (diff) | |
download | GpgFrontend-e8d604cf2924ab101c2a102c23d5028473289814.tar.gz GpgFrontend-e8d604cf2924ab101c2a102c23d5028473289814.zip |
fix: slove discovered bugs
Diffstat (limited to 'src/core/function/GlobalSettingStation.cpp')
-rw-r--r-- | src/core/function/GlobalSettingStation.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/core/function/GlobalSettingStation.cpp b/src/core/function/GlobalSettingStation.cpp index 0158e8b3..e9ccdd05 100644 --- a/src/core/function/GlobalSettingStation.cpp +++ b/src/core/function/GlobalSettingStation.cpp @@ -31,18 +31,6 @@ #include "core/module/ModuleManager.h" #include "core/utils/FilesystemUtils.h" -// macros to find resource files -#if defined(MACOS) && defined(RELEASE) -#define RESOURCE_DIR(appDir) (appDir + "/../Resources/") -#define RESOURCE_DIR_PATH(appDir) (appDir / ".." / "Resources") -#elif defined(LINUX) && defined(RELEASE) -#define RESOURCE_DIR(appDir) (appDir + "/../share/") -#define RESOURCE_DIR_PATH(appDir) (appDir / ".." / "share") -#else -#define RESOURCE_DIR(appDir) (appDir) -#define RESOURCE_DIR_PATH(appDir) (appDir) -#endif - namespace GpgFrontend { class GlobalSettingStation::Impl { |