diff options
author | Sean Young <sean@mess.org> | 2016-02-29 18:57:07 +0000 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-03-01 08:31:39 +0000 |
commit | f2bd96f7dd5225c2547889b55809701caf12d3c2 (patch) | |
tree | 52d10a1ce45e190a982641876159e269b8e091d9 /writerperfect | |
parent | 8ab503a871bf884187381f75cfd15808c340e5c5 (diff) |
MS Write conversion should default to CP1252
2f7f818eeada83c0491dbf40253934d177c36621 "Add Microsoft Word for
DOS conversion" changed this to CP1251 by mistake.
Change-Id: I5d51d8518322a7e542ae8931cf7e72053d89f971
Reviewed-on: https://gerrit.libreoffice.org/22787
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'writerperfect')
-rw-r--r-- | writerperfect/source/writer/MSWorksImportFilter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/writerperfect/source/writer/MSWorksImportFilter.cxx b/writerperfect/source/writer/MSWorksImportFilter.cxx index de8f0a67c409..a4ca000467ee 100644 --- a/writerperfect/source/writer/MSWorksImportFilter.cxx +++ b/writerperfect/source/writer/MSWorksImportFilter.cxx @@ -56,7 +56,7 @@ bool MSWorksImportFilter::doImportDocument(librevenge::RVNGInputStream &rInput, break; case libwps::WPS_RESERVED_0: // MS Write title = WPFT_RESSTR(STR_ENCODING_DIALOG_TITLE_MSWRITE); - encoding = "CP1251"; + encoding = "CP1252"; break; case libwps::WPS_RESERVED_1: // DosWord title = WPFT_RESSTR(STR_ENCODING_DIALOG_TITLE_DOSWORD); |