Some OS/2 Modifications for coordinate normalizations and code for some common controls
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12146 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -73,7 +73,7 @@ static wxString TextToLabel(const wxString& rTitle)
|
||||
{
|
||||
wxString Title;
|
||||
const wxChar *pc;
|
||||
for (pc = rTitle; *pc != wxT('\0'); pc++ )
|
||||
for (pc = rTitle.c_str(); *pc != wxT('\0'); pc++ )
|
||||
{
|
||||
if (*pc == wxT('&') )
|
||||
{
|
||||
@@ -85,10 +85,6 @@ static wxString TextToLabel(const wxString& rTitle)
|
||||
else
|
||||
Title << wxT('~');
|
||||
}
|
||||
// else if (*pc == wxT('/'))
|
||||
// {
|
||||
// Title << wxT('\\');
|
||||
// }
|
||||
else
|
||||
{
|
||||
if ( *pc == wxT('~') )
|
||||
|
Reference in New Issue
Block a user