Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d12da commit c99b675Copy full SHA for c99b675
1 file changed
Mac/Modules/Nav.c
@@ -202,11 +202,9 @@ filldialogoptions(PyObject *d,
202
} else if( eventProcP && strcmp(keystr, "eventProc") == 0 ) {
203
*eventProcP = my_eventProcUPP;
204
} else if( previewProcP && strcmp(keystr, "previewProc") == 0 ) {
205
- PyErr_SetString(ErrorObject, "No callbacks implemented yet");
206
- return 0;
+ *previewProcP = my_previewProcUPP;
207
} else if( filterProcP && strcmp(keystr, "filterProc") == 0 ) {
208
209
+ *filterProcP = my_filterProcUPP;
210
} else if( typeListP && strcmp(keystr, "typeList") == 0 ) {
211
if ( !PyArg_Parse(value, "O&", ResObj_Convert, typeListP) )
212
return 0;
0 commit comments