| 61 | } |
| 62 | |
| 63 | static PyObject* Sbk_FileParamFunc_reloadFile(PyObject* self) |
| 64 | { |
| 65 | FileParamWrapper* cppSelf = 0; |
| 66 | SBK_UNUSED(cppSelf) |
| 67 | if (!Shiboken::Object::isValid(self)) |
| 68 | return 0; |
| 69 | cppSelf = (FileParamWrapper*)((::FileParam*)Shiboken::Conversions::cppPointer(SbkNatronEngineTypes[SBK_FILEPARAM_IDX], (SbkObject*)self)); |
| 70 | |
| 71 | // Call function/method |
| 72 | { |
| 73 | |
| 74 | if (!PyErr_Occurred()) { |
| 75 | // reloadFile() |
| 76 | cppSelf->reloadFile(); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | if (PyErr_Occurred()) { |
| 81 | return 0; |
| 82 | } |
| 83 | Py_RETURN_NONE; |
| 84 | } |
| 85 | |
| 86 | static PyObject* Sbk_FileParamFunc_setSequenceEnabled(PyObject* self, PyObject* pyArg) |
| 87 | { |
nothing calls this directly
no test coverage detected