← Back to team overview

kicad-developers team mailing list archive

[PATCH 06/14] CHECK: use HTML_MESSAGE_BOX instead of base

 

---
 common/class_marker_base.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/class_marker_base.cpp b/common/class_marker_base.cpp
index 91e05a2..da1808e 100644
--- a/common/class_marker_base.cpp
+++ b/common/class_marker_base.cpp
@@ -39,7 +39,7 @@
 #include "macros.h"
 #include "class_drawpanel.h"
 #include "class_marker_base.h"
-#include "dialog_display_info_HTML_base.h"
+#include "html_messagebox.h"
 
 
 // Default marquer shape:
@@ -200,7 +200,7 @@ void MARKER_BASE::DrawMarker( EDA_DRAW_PANEL* aPanel, wxDC* aDC, GR_DRAWMODE aDr
 void MARKER_BASE::DisplayMarkerInfo( EDA_DRAW_FRAME* aFrame )
 {
     wxString msg = m_drc.ShowHtml();
-    DIALOG_DISPLAY_HTML_TEXT_BASE infodisplay( (wxWindow*)aFrame, wxID_ANY, _( "Marker Info" ),
+    HTML_MESSAGE_BOX infodisplay( (wxWindow*)aFrame, _( "Marker Info" ),
                                                wxGetMousePosition(), wxSize( 550, 140 ) );
 
     infodisplay.m_htmlWindow->SetPage( msg );

Follow ups

References