| 637 | } |
| 638 | |
| 639 | Py::Object TaskDialogPy::setDocumentName(const Py::Tuple& args) |
| 640 | { |
| 641 | const char* name {""}; |
| 642 | if (!PyArg_ParseTuple(args.ptr(), "s", &name)) { |
| 643 | throw Py::Exception(); |
| 644 | } |
| 645 | dialog->setDocumentName(name); |
| 646 | return Py::None(); |
| 647 | } |
| 648 | |
| 649 | Py::Object TaskDialogPy::isAllowedAlterDocument(const Py::Tuple& args) |
| 650 | { |
no test coverage detected