Replace non-translated characters with underscore

This commit is contained in:
Jonas Kvinge
2022-02-04 19:07:15 +01:00
parent 40f381257d
commit 3acbe431f7
2 changed files with 2 additions and 1 deletions

View File

@@ -823,6 +823,7 @@ QString UnicodeToAscii(QString unicode) {
iconv_close(conv);
QString ret(output_ptr);
ret = ret.replace('?', '_');
delete[] input_ptr;
delete[] output_ptr;