| 77 | } |
| 78 | |
| 79 | BOOL PropSheetCheckForDisplay( CPropertySheet *pSheet ) |
| 80 | { |
| 81 | int max = pSheet->GetPageCount(); |
| 82 | if (max==0) |
| 83 | RETURN_ERR("The property sheet has no pages"); |
| 84 | // for (int i=0; i<max; i++) { |
| 85 | // CPythonPropertyPage *pPage = (CPythonPropertyPage *)pSheet->GetPage(i); |
| 86 | // use help ID here |
| 87 | // if (!pPage->CheckTemplate()) { |
| 88 | // char buf[80]; |
| 89 | // sprintf(buf, "Property Page %d can not be located", i ); |
| 90 | // RETURN_ERR(buf); |
| 91 | // } |
| 92 | // } |
| 93 | return TRUE; |
| 94 | } |
| 95 | |
| 96 | ///////////////////////////////////////////////////////////////////// |
| 97 | // |
no outgoing calls
no test coverage detected