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-15 03:11:28 +0300
committerelfmz <fenix1905@tut.by>2022-02-15 03:11:28 +0300
commit88858d0db19bdfb6fbdb997cecd7c974abe730d1 (patch)
treeceba68e5becf67081bd0ca1361f803f60e8d6885 /far2l/src/dizlist.cpp
parenta14bebeeaf7a003e112b3ffd71261b2f4435b83d (diff)
continue MSG() macro cleanup
Diffstat (limited to 'far2l/src/dizlist.cpp')
-rw-r--r--far2l/src/dizlist.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/far2l/src/dizlist.cpp b/far2l/src/dizlist.cpp
index fc1837f8..6bb3b79c 100644
--- a/far2l/src/dizlist.cpp
+++ b/far2l/src/dizlist.cpp
@@ -102,7 +102,7 @@ void DizList::Reset()
void DizList::PR_ReadingMsg()
{
- Message(0,0,L"",MSG(MReadingDiz));
+ Message(0,0,L"",MReadingDiz);
}
void DizList::Read(const wchar_t *Path, const wchar_t *DizName)
@@ -482,7 +482,7 @@ bool DizList::Flush(const wchar_t *Path,const wchar_t *DizName)
}
else
{
- Message(MSG_WARNING,1,MSG(MError),MSG(MCannotUpdateDiz),MSG(MCannotUpdateRODiz),MSG(MOk));
+ Message(MSG_WARNING,1,MError,MCannotUpdateDiz,MCannotUpdateRODiz,MOk);
return false;
}
}
@@ -566,7 +566,7 @@ bool DizList::Flush(const wchar_t *Path,const wchar_t *DizName)
apiDeleteFile(strDizFileName);
if(AnyError)
{
- Message(MSG_WARNING|MSG_ERRORTYPE,1,MSG(MError),MSG(MCannotUpdateDiz),MSG(MOk));
+ Message(MSG_WARNING|MSG_ERRORTYPE,1,MError,MCannotUpdateDiz,MOk);
return false;
}
}