MCPcopy Create free account
hub / github.com/mhammond/pywin32 / PropSheetCheckForDisplay

Function PropSheetCheckForDisplay

Pythonwin/win32prop.cpp:79–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79BOOL 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//

Callers 2

ui_propsheet_do_modalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected