//////////////////////////////////////////////////////////////// PyCButton
| 68 | // PyCButton |
| 69 | // |
| 70 | static CButton *GetButton(PyObject *self) |
| 71 | { |
| 72 | // note we can only ask for a CWnd, if the LB is created from a resource based |
| 73 | // dialog. This is also the technique MFC uses (specifically appdlg.cpp) |
| 74 | return (CButton *)PyCWnd::GetPythonGenericWnd(self); |
| 75 | } |
| 76 | PyCButton::PyCButton() |
| 77 | { |
| 78 | } |
no outgoing calls
no test coverage detected