@@ -1855,25 +1855,6 @@ static PyObject *PyCSliderCtrl_clear_sel(PyObject *self, PyObject *args)
18551855 RETURN_NONE;
18561856}
18571857
1858- // @pymethod int|PyCSliderCtrl|VerifyPos|Verify the position is between configured min and max
1859- static PyObject *PyCSliderCtrl_verify_pos (PyObject *self, PyObject *args)
1860- {
1861- CHECK_NO_ARGS (args);
1862- CSliderCtrl *pSC = GetSliderCtrl (self);
1863- if (!pSC)
1864- return NULL ;
1865- #if _MFC_VER >= 0x0710
1866- // This just vanished in VS7
1867- PyErr_SetString (PyExc_NotImplementedError, " VerifyPos does not appear in this version of MFC" );
1868- return NULL ;
1869- #else
1870- GUI_BGN_SAVE;
1871- pSC->VerifyPos ();
1872- GUI_END_SAVE;
1873- #endif
1874- RETURN_NONE;
1875- }
1876-
18771858// @pymethod int|PyCSliderCtrl|ClearTics|Clear the control's tic marks
18781859static PyObject *PyCSliderCtrl_clear_tics (PyObject *self, PyObject *args)
18791860{
@@ -1919,7 +1900,6 @@ static struct PyMethodDef PyCSliderCtrl_methods[] = {
19191900 {" SetTic" , PyCSliderCtrl_set_tic, 1 }, // @pymeth SetTic|Set a tick at the position
19201901 {" SetTicFreq" , PyCSliderCtrl_set_tic_freq, 1 }, // @pymeth SetTicFreq|Set the tic mark frequency
19211902 {" ClearSel" , PyCSliderCtrl_clear_sel, 1 }, // @pymeth ClearSel|Clear any control selection
1922- {" VerifyPos" , PyCSliderCtrl_verify_pos, 1 }, // @pymeth VerifyPos|Verify the positon between min and max
19231903 {" ClearTics" , PyCSliderCtrl_clear_tics, 1 }, // @pymeth ClearTics|Clear any tic marks from the control
19241904 {NULL , NULL }};
19251905
0 commit comments