Use static wxControl::GetLabelText in preference to wxStripMenuCodes with the wxStrip_Mnemonics flag for readability.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
afa292ff31
commit
5b70207eb4
@ -44,7 +44,7 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID winid,
|
||||
m_cocoaNSView = NULL;
|
||||
SetNSTextField([[NSTextField alloc] initWithFrame:MakeDefaultNSRect(size)]);
|
||||
[m_cocoaNSView release];
|
||||
[GetNSTextField() setStringValue:wxNSStringWithWxString(wxStripMenuCodes(label, wxStrip_Mnemonics))];
|
||||
[GetNSTextField() setStringValue:wxNSStringWithWxString(GetLabelText(label))];
|
||||
// [GetNSTextField() setBordered: NO];
|
||||
[GetNSTextField() setBezeled: NO];
|
||||
[GetNSTextField() setEditable: NO];
|
||||
@ -70,7 +70,7 @@ wxStaticText::~wxStaticText()
|
||||
|
||||
void wxStaticText::SetLabel(const wxString& label)
|
||||
{
|
||||
[GetNSTextField() setStringValue:wxNSStringWithWxString(wxStripMenuCodes(label, wxStrip_Mnemonics))];
|
||||
[GetNSTextField() setStringValue:wxNSStringWithWxString(GetLabelText(label))];
|
||||
NSRect oldFrameRect = [GetNSTextField() frame];
|
||||
NSView *superview = [GetNSTextField() superview];
|
||||
wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel Old Position: (%d,%d)"), GetPosition().x, GetPosition().y);
|
||||
|
Loading…
Reference in New Issue
Block a user