fix FindMenu broken by implementation of double ampersands in menu and menu

item titles (finding "&File" was no longer working)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18237 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot 2002-12-14 21:44:48 +00:00
parent 7e99eddf64
commit 7cf4f7e21f
2 changed files with 28 additions and 4 deletions

View File

@ -591,6 +591,9 @@ wxString wxMenuBar::GetLabelTop( size_t pos ) const
continue;
}
// don't remove ampersands '&' since if we have them in the menu title
// it means that they were doubled to indicate "&" instead of accelerator
label += *pc;
}
@ -778,7 +781,7 @@ wxString wxMenuItemBase::GetLabelFromText(const wxString& text)
for ( const wxChar *pc = text.c_str(); *pc; pc++ )
{
if ( *pc == wxT('_') )
if ( *pc == wxT('_') )
{
// GTK 1.2 escapes "xxx_xxx" to "xxx__xxx"
pc++;
@ -796,9 +799,15 @@ wxString wxMenuItemBase::GetLabelFromText(const wxString& text)
}
#endif
if ( (*pc == wxT('&')) && (*(pc+1) != wxT('&')) )
{
// wxMSW escapes "&"
// "&" is doubled to indicate "&" instead of accelerator
continue;
}
label += *pc;
}
return label;
}
@ -971,6 +980,9 @@ wxString wxMenuItem::GetFactoryPath() const
continue;
}
// don't remove ampersands '&' since if we have them in the menu item title
// it means that they were doubled to indicate "&" instead of accelerator
path += *pc;
}

View File

@ -591,6 +591,9 @@ wxString wxMenuBar::GetLabelTop( size_t pos ) const
continue;
}
// don't remove ampersands '&' since if we have them in the menu title
// it means that they were doubled to indicate "&" instead of accelerator
label += *pc;
}
@ -778,7 +781,7 @@ wxString wxMenuItemBase::GetLabelFromText(const wxString& text)
for ( const wxChar *pc = text.c_str(); *pc; pc++ )
{
if ( *pc == wxT('_') )
if ( *pc == wxT('_') )
{
// GTK 1.2 escapes "xxx_xxx" to "xxx__xxx"
pc++;
@ -796,9 +799,15 @@ wxString wxMenuItemBase::GetLabelFromText(const wxString& text)
}
#endif
if ( (*pc == wxT('&')) && (*(pc+1) != wxT('&')) )
{
// wxMSW escapes "&"
// "&" is doubled to indicate "&" instead of accelerator
continue;
}
label += *pc;
}
return label;
}
@ -971,6 +980,9 @@ wxString wxMenuItem::GetFactoryPath() const
continue;
}
// don't remove ampersands '&' since if we have them in the menu item title
// it means that they were doubled to indicate "&" instead of accelerator
path += *pc;
}