Get the stock label when stock ID is used with empty label in Create()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29542 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2004-09-29 16:07:12 +00:00
parent 66370e3854
commit 164f091f4b

View File

@ -16,6 +16,7 @@
#include "wx/log.h"
#endif
#include "wx/stockitem.h"
#include "wx/cocoa/autorelease.h"
#import <AppKit/NSButton.h>
@ -27,10 +28,12 @@ END_EVENT_TABLE()
WX_IMPLEMENT_COCOA_OWNER(wxButton,NSButton,NSControl,NSView)
bool wxButton::Create(wxWindow *parent, wxWindowID winid,
const wxString& label, const wxPoint& pos,
const wxString& lbl, const wxPoint& pos,
const wxSize& size, long style,
const wxValidator& validator, const wxString& name)
{
wxString label((lbl.empty() && wxIsStockID(winid))?wxGetStockLabel(winid):lbl);
wxAutoNSAutoreleasePool pool;
wxLogTrace(wxTRACE_COCOA,wxT("Creating control with id=%d"),winid);
if(!CreateControl(parent,winid,pos,size,style,validator,name))