diff --git a/common/dialogs/html_message_box.cpp b/common/dialogs/html_message_box.cpp index 448dc0acc0..7982e0d6b6 100644 --- a/common/dialogs/html_message_box.cpp +++ b/common/dialogs/html_message_box.cpp @@ -25,10 +25,8 @@ #include #include #include -#include #include #include -#include 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 diff --git a/include/dialogs/html_message_box.h b/include/dialogs/html_message_box.h index c3f7cd8224..51e77293c6 100644 --- a/include/dialogs/html_message_box.h +++ b/include/dialogs/html_message_box.h @@ -83,9 +83,6 @@ public: */ void ShowModeless(); - void OnHTMLLinkClicked( wxHtmlLinkEvent& event ) override; - - protected: void reload(); diff --git a/pcbnew/dialogs/panel_setup_rules_help.md b/pcbnew/dialogs/panel_setup_rules_help.md index e1f4074345..c056f83ab7 100644 --- a/pcbnew/dialogs/panel_setup_rules_help.md +++ b/pcbnew/dialogs/panel_setup_rules_help.md @@ -311,8 +311,4 @@ Deprecated; use `intersectsArea()` instead. (rule high-current (constraint track_width (min 1.0mm)) (constraint connection_width (min 0.8mm)) - (condition "A.NetClass == 'Power'")) - -### Documentation - -For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/pcbnew/#custom_design_rules). \ No newline at end of file + (condition "A.NetClass == 'Power'")) \ No newline at end of file diff --git a/pcbnew/dialogs/panel_setup_rules_help_md.h b/pcbnew/dialogs/panel_setup_rules_help_md.h index abccac1285..c3ef147ec0 100644 --- a/pcbnew/dialogs/panel_setup_rules_help_md.h +++ b/pcbnew/dialogs/panel_setup_rules_help_md.h @@ -312,8 +312,4 @@ _HKI( "### Top-level Clauses\n" " (rule high-current\n" " (constraint track_width (min 1.0mm))\n" " (constraint connection_width (min 0.8mm))\n" -" (condition \"A.NetClass == 'Power'\"))\n" -"\n" -"### Documentation\n" -"\n" -"For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/pcbnew/#custom_design_rules)." ); +" (condition \"A.NetClass == 'Power'\"))" );