Revert "Add doc link to custom rules syntax help."

This reverts commit 7874735810.
This commit is contained in:
Seth Hillbrand
2023-02-10 15:33:03 -08:00
parent 81a55c42a1
commit fda3feaf3f
4 changed files with 2 additions and 29 deletions
-16
View File
@@ -25,10 +25,8 @@
#include <wx/clipbrd.h>
#include <wx/log.h>
#include <wx/textctrl.h>
#include <wx/uri.h>
#include <string_utils.h>
#include <dialogs/html_message_box.h>
#include <build_version.h>
HTML_MESSAGE_BOX::HTML_MESSAGE_BOX( wxWindow* aParent, const wxString& aTitle,
@@ -146,20 +144,6 @@ void HTML_MESSAGE_BOX::ShowModeless()
}
void HTML_MESSAGE_BOX::OnHTMLLinkClicked( wxHtmlLinkEvent& event )
{
wxString href = event.GetLinkInfo().GetHref();
if( href.StartsWith( wxS( "https://docs.kicad.org/" ) ) )
{
href.Replace( wxS( "GetMajorMinorVersion" ), GetMajorMinorVersion() );
wxURI uri( href );
wxLaunchDefaultBrowser( uri.BuildURI() );
}
}
void HTML_MESSAGE_BOX::OnCharHook( wxKeyEvent& aEvent )
{
// shift-return (Mac default) or Ctrl-Return (GTK) for OK