---------------------------------------------------------------------------
| 24 | |
| 25 | //--------------------------------------------------------------------------- |
| 26 | GUI_Main_HTML::GUI_Main_HTML(Core* Core_, wxWindow* parent) |
| 27 | : wxHtmlWindow(parent, -1, wxPoint(1, 1), wxSize(parent->GetClientSize().GetWidth()-1, parent->GetClientSize().GetHeight()-1)), |
| 28 | GUI_Main_Common_Core(Core_) |
| 29 | { |
| 30 | //Drag and Drop |
| 31 | #if wxUSE_DRAG_AND_DROP && defined(__WXMAC__) |
| 32 | SetDropTarget(new FileDrop(C)); |
| 33 | #endif //wxUSE_DRAG_AND_DROP |
| 34 | |
| 35 | //Update |
| 36 | GUI_Refresh(); |
| 37 | } |
| 38 | |
| 39 | //--------------------------------------------------------------------------- |
| 40 | GUI_Main_HTML::~GUI_Main_HTML() |
nothing calls this directly
no outgoing calls
no test coverage detected