| 45 | const int STYLE_MARGINOFFSET = 3; |
| 46 | |
| 47 | OutputWindow::OutputWindow() : |
| 48 | DockableWindow(OUTWINDOWCLASS), |
| 49 | m_winThread(0), |
| 50 | m_hContextMenu(NULL), |
| 51 | m_hScintilla(NULL), |
| 52 | m_maxLines(500), |
| 53 | m_hNotify(NULL) |
| 54 | { |
| 55 | m_style = 0; |
| 56 | m_exStyle = 0; |
| 57 | |
| 58 | _MainOutput = this; |
| 59 | } |
| 60 | |
| 61 | OutputWindow::~OutputWindow() { |
| 62 | } |
nothing calls this directly
no outgoing calls
no test coverage detected