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/infolist.hpp
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/infolist.hpp')
-rw-r--r--far2l/src/infolist.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/far2l/src/infolist.hpp b/far2l/src/infolist.hpp
index 82a7b8c5..c19dc0e6 100644
--- a/far2l/src/infolist.hpp
+++ b/far2l/src/infolist.hpp
@@ -35,6 +35,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "panel.hpp"
#include "viewer.hpp"
+#include "lang.hpp"
//class Viewer;
/* $ 12.10.2001 SKV
@@ -78,9 +79,9 @@ class InfoList:public Panel
void ShowPluginDescription();
void PrintText(const wchar_t *Str);
- void PrintText(int MsgID);
+ void PrintText(FarLangMsg MsgID);
void PrintInfo(const wchar_t *Str);
- void PrintInfo(int MsgID);
+ void PrintInfo(FarLangMsg MsgID);
int OpenDizFile(const wchar_t *DizFile,int YPos);