| 210 | } |
| 211 | |
| 212 | void MainFrame::UpdateWindowTitle() |
| 213 | { |
| 214 | if (m_isDirty) |
| 215 | { |
| 216 | SetTitle(L"*" + m_baseTitle); |
| 217 | } |
| 218 | else |
| 219 | { |
| 220 | SetTitle(m_baseTitle); |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | void MainFrame::UpdateStatusBar() |
| 225 | { |
nothing calls this directly
no outgoing calls
no test coverage detected