Fix wxT commit

Fixes https://gitlab.com/kicad/code/kicad/issues/10967
This commit is contained in:
Seth Hillbrand 2022-02-24 16:59:54 -08:00
parent 55bdef9bd2
commit de48f41184
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ void DIALOG_ABOUT::createNotebookHtmlPage( wxNotebook* aParent, const wxString&
wxStaticText* DIALOG_ABOUT::wxStaticTextRef( wxScrolledWindow* aParent, const wxString& aReference )
{
wxStaticText* text = new wxStaticText( aParent, wxID_ANY,
wxT( "(wxT( " ) + aReference + wxT( " ))" ) );
wxT( "(" ) + aReference + wxT( ")" ) );
return text;
}