Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/elfmz/far2l.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelfmz <fenix1905@tut.by>2022-02-20 02:02:21 +0300
committerGitHub <noreply@github.com>2022-02-20 02:02:21 +0300
commite0f3f14fb3d648ba640e75cf25e257ac8fde4865 (patch)
treea88b1d0d075cd8a951a757e45114cf64a8cd6fb3 /far2l/src/datetime.cpp
parentdc2f6de4c2f438046b4d31cf4c2078b6ad65a5ce (diff)
Language refactor (#1271)
optimized and refactored language files loader got rid of MSG() macro and use Msg:: namespace instead
Diffstat (limited to 'far2l/src/datetime.cpp')
-rw-r--r--far2l/src/datetime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/far2l/src/datetime.cpp b/far2l/src/datetime.cpp
index 885861a0..939a69ff 100644
--- a/far2l/src/datetime.cpp
+++ b/far2l/src/datetime.cpp
@@ -748,7 +748,7 @@ void ConvertDate(const FILETIME &ft,FARString &strDateText, FARString &strTimeTe
if (TextMonth)
{
- const wchar_t *Month=MSG(MMonthJan+st.wMonth-1);
+ const wchar_t *Month=(Msg::MonthJan+st.wMonth-1);
switch (CurDateFormat)
{