Skip to content

Commit

Permalink
fix(moneymanagerex#4987): unicode test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Whalley committed Aug 29, 2022
1 parent 7423f1a commit b1d900a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mmchecking_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1494,7 +1494,7 @@ wxString UDFCFormatHelper(Model_CustomField::FIELDTYPE type, wxString data)
break;
case Model_CustomField::FIELDTYPE::BOOLEAN:
bool v = wxString("TRUE|true|1").Contains(data);
formattedData = (v) ? "\u2713" : "\u2717";
formattedData = (v) ? L"\u2713" : L"\u2717";
break;
}
}
Expand Down

0 comments on commit b1d900a

Please sign in to comment.