diff options
author | George Hazan <ghazan@miranda.im> | 2019-12-09 19:45:36 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-12-09 19:45:36 +0300 |
commit | 0a4cd22b70ac012d74c7df64d29cbe8afbc17e40 (patch) | |
tree | 7847f929f8ba37ac967ee068843ec1b7b99b1e65 /plugins/Msg_Export/src/main.cpp | |
parent | b08e4a9a301f9ae129ee320220e83bf9b14f6118 (diff) |
fixes #2138 (Msg_Export: enable "Use UTF-8" by default)
Diffstat (limited to 'plugins/Msg_Export/src/main.cpp')
-rwxr-xr-x | plugins/Msg_Export/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/main.cpp b/plugins/Msg_Export/src/main.cpp index 2273804ae6..08dfb1c429 100755 --- a/plugins/Msg_Export/src/main.cpp +++ b/plugins/Msg_Export/src/main.cpp @@ -162,7 +162,7 @@ int CMPlugin::Load() g_bUseJson = getBool("UseJson", false);
g_bAppendNewLine = getBool("AppendNewLine", true);
g_bReplaceHistory = getBool("ReplaceHistory", false);
- g_bUseUtf8InNewFiles = getBool("UseUtf8InNewFiles", g_bUseUtf8InNewFiles);
+ g_bUseUtf8InNewFiles = getBool("UseUtf8InNewFiles", true);
g_bUseLessAndGreaterInExport = getBool("UseLessAndGreaterInExport", false);
g_enRenameAction = (ENDialogAction)getByte("RenameAction", eDAPromptUser);
|