| 444 | } |
| 445 | |
| 446 | int GenericPageList::ModifiedPrompt(CDialog *wnd) { |
| 447 | // If current file has been modified, check with user first... |
| 448 | if (!m_TableModified) |
| 449 | return (IDYES); |
| 450 | if (wnd->MessageBox("Changes to table file will be lost. Proceed?", "Table File Has Been Modified", MB_YESNO) == |
| 451 | IDYES) |
| 452 | return (IDYES); |
| 453 | return (IDNO); |
| 454 | } |
| 455 | |
| 456 | void GenericPageList::SetTitleString(CDialog *wnd) { |
| 457 | char title[1024]; |
no outgoing calls
no test coverage detected