mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-07 16:53:00 -07:00
use utf8 instead of the system encoding (#4582)
* use utf8 instead of the system preference * found another toLocal8Bit
This commit is contained in:
parent
92ed53e13a
commit
baaf261116
2 changed files with 2 additions and 2 deletions
|
|
@ -337,7 +337,7 @@ static void setupParserRules()
|
|||
|
||||
FilterString::FilterString(const QString &expr)
|
||||
{
|
||||
QByteArray ba = expr.simplified().toLocal8Bit();
|
||||
QByteArray ba = expr.simplified().toUtf8();
|
||||
|
||||
std::call_once(init, setupParserRules);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue