summaryrefslogtreecommitdiff
path: root/wx+/no_flicker.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-02-21 12:13:36 -0500
committerB. Stack <bgstack15@gmail.com>2023-02-21 12:13:36 -0500
commit5a6ed4e8eadf3af3d141b246f124d67b62a1357c (patch)
tree4e49ae80efbe181c46110867fe7cf703efd3fcf5 /wx+/no_flicker.h
parentargon2 copyright notice updated (diff)
downloadFreeFileSync-5a6ed4e8eadf3af3d141b246f124d67b62a1357c.tar.gz
FreeFileSync-5a6ed4e8eadf3af3d141b246f124d67b62a1357c.tar.bz2
FreeFileSync-5a6ed4e8eadf3af3d141b246f124d67b62a1357c.zip
add upstream 12.112.1
Diffstat (limited to 'wx+/no_flicker.h')
-rw-r--r--wx+/no_flicker.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/wx+/no_flicker.h b/wx+/no_flicker.h
index 1c91bd48..9f91bbdb 100644
--- a/wx+/no_flicker.h
+++ b/wx+/no_flicker.h
@@ -55,9 +55,8 @@ void setTextWithUrls(wxRichTextCtrl& richCtrl, const wxString& newText)
for (auto it = newText.begin();;)
{
- const wchar_t urlPrefix[] = L"https://";
- const auto itUrl = std::search(it, newText.end(),
- urlPrefix, urlPrefix + strLength(urlPrefix));
+ const std::wstring_view urlPrefix = L"https://";
+ const auto itUrl = std::search(it, newText.end(), urlPrefix.begin(), urlPrefix.end());
if (it != itUrl)
blocks.emplace_back(BlockType::text, wxString(it, itUrl));
bgstack15