[runner]Update Toast Notification Arrow - use Unicode character (#29229)

* "⇨" was "->"

* Escape unicode character
This commit is contained in:
Joseph Finney
2023-10-18 11:42:18 -05:00
committed by GitHub
parent c67b1b3a9a
commit e63dbe00b6

View File

@@ -33,7 +33,7 @@ using namespace updating;
std::wstring CurrentVersionToNextVersion(const new_version_download_info& info) std::wstring CurrentVersionToNextVersion(const new_version_download_info& info)
{ {
auto result = VersionHelper{ VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION }.toWstring(); auto result = VersionHelper{ VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION }.toWstring();
result += L" -> "; result += L" \u2192 "; // Right arrow
result += info.version.toWstring(); result += info.version.toWstring();
return result; return result;
} }