Ref T682 Don't convert text codec name to lower case, as it is case sensitive.

This commit is contained in:
Mat Sutcliffe
2019-06-17 14:44:41 +01:00
parent a3ff42793f
commit 4ab3e9a03b
3 changed files with 21 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ namespace BlackMisc
const QString &getTextCodec() const { return m_textCodec; }
//! Set codec
void setTextCodec(const QString &codec) { m_textCodec = codec.trimmed().toLower(); }
void setTextCodec(const QString &codec) { m_textCodec = codec.trimmed(); }
//! Get send / receive details
SendReceiveDetails getSendReceiveDetails() const;