]> git.saurik.com Git - wxWidgets.git/commitdiff
#11259: Correction for bad help button on OSX
authorJulian Smart <julian@anthemion.co.uk>
Tue, 29 Sep 2009 07:19:38 +0000 (07:19 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 29 Sep 2009 07:19:38 +0000 (07:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62197 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/wizard.cpp

index 82af511d4b76234302f58731b5e97cbbc00e1851..ecd387555f79a2bf800ab30297c203e5ec01717a 100644 (file)
@@ -431,7 +431,7 @@ void wxWizard::AddButtonRow(wxBoxSizer *mainColumn)
     wxButton *btnHelp=0;
 #ifdef __WXMAC__
     if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON)
-        btnHelp=new wxButton(this, wxID_HELP, _("&Help"), wxDefaultPosition, wxDefaultSize, buttonStyle);
+        btnHelp=new wxButton(this, wxID_HELP, wxEmptyString, wxDefaultPosition, wxDefaultSize, buttonStyle);
 #endif
 
     m_btnNext = new wxButton(this, wxID_FORWARD, _("&Next >"));