From de48f4118402f3f3fe74856e35ba990ed530ff74 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Thu, 24 Feb 2022 16:59:54 -0800 Subject: [PATCH] Fix wxT commit Fixes https://gitlab.com/kicad/code/kicad/issues/10967 --- common/dialog_about/dialog_about.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/dialog_about/dialog_about.cpp b/common/dialog_about/dialog_about.cpp index c0acdb10b2..89d27c3d12 100644 --- a/common/dialog_about/dialog_about.cpp +++ b/common/dialog_about/dialog_about.cpp @@ -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; }