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 02:04:14 +0300
committerelfmz <fenix1905@tut.by>2022-02-15 02:04:14 +0300
commita14bebeeaf7a003e112b3ffd71261b2f4435b83d (patch)
tree3e6b0c313a7094abd8c03e6c4dcbd2f15defe35c /far2l/src/hilight.cpp
parentb5e5d58b43a1526bae99d5beedb276ba7c489d1a (diff)
dont use MSG() macro for Message() arguments - its not needed anymore
Diffstat (limited to 'far2l/src/hilight.cpp')
-rw-r--r--far2l/src/hilight.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/far2l/src/hilight.cpp b/far2l/src/hilight.cpp
index 53ea6c0c..d20b3ac1 100644
--- a/far2l/src/hilight.cpp
+++ b/far2l/src/hilight.cpp
@@ -602,9 +602,9 @@ void HighlightFiles::HiEdit(int MenuPos)
*/
case KEY_CTRLR:
- if (Message(MSG_WARNING,2,MSG(MHighlightTitle),
- MSG(MHighlightWarning),MSG(MHighlightAskRestore),
- MSG(MYes),MSG(MCancel)))
+ if (Message(MSG_WARNING,2,MHighlightTitle,
+ MHighlightWarning,MHighlightAskRestore,
+ MYes,MCancel))
break;
{ ConfigWriter(RegColorsHighlight).RemoveSection(); }
@@ -624,9 +624,9 @@ void HighlightFiles::HiEdit(int MenuPos)
const wchar_t *Mask;
HiData.getItem(RealSelectPos)->GetMask(&Mask);
- if (Message(MSG_WARNING,2,MSG(MHighlightTitle),
- MSG(MHighlightAskDel),Mask,
- MSG(MDelete),MSG(MCancel)))
+ if (Message(MSG_WARNING,2,MHighlightTitle,
+ MHighlightAskDel,Mask,
+ MDelete,MCancel))
break;
HiData.deleteItem(RealSelectPos);