diff options
author | 2023-05-17 21:59:43 +0530 | |
---|---|---|
committer | 2023-05-17 21:59:43 +0530 | |
commit | 5f10a0f9657358fcd86c55ec065f3855bad0c160 (patch) | |
tree | 340f949dbe076db57bf62879ad150fabc884905a /src/dictionaries.cpp | |
parent | b4b5dc3397966bea899bbb5ec0f756bb745dbff1 (diff) | |
download | whatsie-5f10a0f9657358fcd86c55ec065f3855bad0c160.tar.gz whatsie-5f10a0f9657358fcd86c55ec065f3855bad0c160.zip |
feat: minor fixes + code cleanup
Diffstat (limited to 'src/dictionaries.cpp')
-rw-r--r-- | src/dictionaries.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dictionaries.cpp b/src/dictionaries.cpp index fc8e7c0..5299806 100644 --- a/src/dictionaries.cpp +++ b/src/dictionaries.cpp @@ -19,7 +19,7 @@ QString Dictionaries::GetDictionaryPath() { // the environment variable takes precedence on all platforms if (qEnvironmentVariableIsSet("QTWEBENGINE_DICTIONARIES_PATH")) { - dict_path = utils::GetEnvironmentVar("QTWEBENGINE_DICTIONARIES_PATH"); + dict_path = Utils::GetEnvironmentVar("QTWEBENGINE_DICTIONARIES_PATH"); return dict_path; } |