diff options
author | Chris Sherlock <chris.sherlock@collabora.com> | 2015-02-03 09:44:36 +1100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-02-03 11:11:11 +0000 |
commit | ed2b4fcd9275dff8238ae38b36b2fa8f3bd8b772 (patch) | |
tree | 33a3a91e0f141eb6093663fc0ff217f4e3847f7c /sc | |
parent | 94ef70827b8dbe29b16fc8eb47d5954df43eef8d (diff) |
tdf#39468 translate German variable in sc export filter
Change-Id: Icdd126714b988517bdbbe49b203951afd92f8a17
Reviewed-on: https://gerrit.libreoffice.org/14297
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/inc/exp_op.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/inc/exp_op.hxx b/sc/source/filter/inc/exp_op.hxx index 43c21ed79423..1272a031af92 100644 --- a/sc/source/filter/inc/exp_op.hxx +++ b/sc/source/filter/inc/exp_op.hxx @@ -36,12 +36,12 @@ protected: SvStream& aOut; ScDocument* pD; - rtl_TextEncoding eZielChar; // target character set + rtl_TextEncoding eTargetCharset; // target character set public: ExportTyp( SvStream& aStream, ScDocument* pDoc, rtl_TextEncoding eDest ): aOut( aStream ) { - eZielChar = eDest; + eTargetCharset = eDest; pD = pDoc; } |