-------------------------------------------------------------------------------
| 111 | |
| 112 | //------------------------------------------------------------------------------- |
| 113 | void CLogWindow::Show() { |
| 114 | if (this->hwnd) { |
| 115 | ShowWindow(this->hwnd, SW_SHOW); |
| 116 | this->bIsVisible = true; |
| 117 | |
| 118 | // contents aren't updated while the logger isn't displayed |
| 119 | this->Update(); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | //------------------------------------------------------------------------------- |
| 124 | void CMyLogStream::write(const char *message) { |