| 175 | } |
| 176 | |
| 177 | void TableFileFilter::OnFileSave() { |
| 178 | // TODO: Add your command handler code here |
| 179 | if (!m_PageList.FilenameSpecified()) { |
| 180 | OnFileSaveAs(); |
| 181 | return; |
| 182 | } |
| 183 | |
| 184 | CWaitCursor wc; |
| 185 | if (!m_PageList.SaveList(NULL)) { |
| 186 | MessageBox("The save was unsuccessfull", "Save Table Error!"); |
| 187 | return; |
| 188 | } |
| 189 | m_PageList.SetTitleString(); |
| 190 | } |
| 191 | |
| 192 | void TableFileFilter::OnFileSaveAs() { |
| 193 | // TODO: Add your command handler code here |
nothing calls this directly
no test coverage detected