projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
check for m_parentMenu being NULL in IsChecked/Checked/Enable() too (closes #10460)
[wxWidgets.git]
/
src
/
generic
/
aboutdlgg.cpp
diff --git
a/src/generic/aboutdlgg.cpp
b/src/generic/aboutdlgg.cpp
index b7a9fcf9775109ada00a0f8dafc8a66b2706f718..c6f1845ca724fb695d389b2ba524136c50205bcf 100644
(file)
--- a/
src/generic/aboutdlgg.cpp
+++ b/
src/generic/aboutdlgg.cpp
@@
-100,8
+100,9
@@
wxString wxAboutDialogInfo::GetCopyrightToDisplay() const
{
wxString ret = m_copyright;
{
wxString ret = m_copyright;
- ret.Replace("(c)", "\u00A9");
- ret.Replace("(C)", "\u00A9");
+ const wxString copyrightSign = wxString::FromUTF8("\xc2\xa9");
+ ret.Replace("(c)", copyrightSign);
+ ret.Replace("(C)", copyrightSign);
return ret;
}
return ret;
}