Some corrections for BC++ compilation; Latex doc corrections
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1531 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1092,6 +1092,13 @@ int wxString::Freq(char ch) const
|
||||
return count;
|
||||
}
|
||||
|
||||
// convert to upper case, return the copy of the string
|
||||
wxString wxString::Upper() const
|
||||
{ wxString s(*this); return s.MakeUpper(); }
|
||||
|
||||
// convert to lower case, return the copy of the string
|
||||
wxString wxString::Lower() const { wxString s(*this); return s.MakeLower(); }
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// standard C++ library string functions
|
||||
// ---------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user