| 136 | } |
| 137 | |
| 138 | void CTableFileEdit::OnTableEditFileSave() { |
| 139 | // TODO: Add your command handler code here |
| 140 | m_PageList.SaveSelected(&m_DescriptionBox); |
| 141 | |
| 142 | if (!m_PageList.SaveTable(NULL)) { |
| 143 | MessageBox("The save was unsuccessfull", "Save Table Error!"); |
| 144 | return; |
| 145 | } |
| 146 | m_PageList.SetTitleString(this); |
| 147 | } |
| 148 | |
| 149 | void CTableFileEdit::OnTableEditFileSaveAs() { |
| 150 | // TODO: Add your command handler code here |
nothing calls this directly
no test coverage detected