| 792 | } |
| 793 | |
| 794 | Py::Object ViewProviderPy::getIcon() const |
| 795 | { |
| 796 | PythonWrapper wrap; |
| 797 | wrap.loadGuiModule(); |
| 798 | wrap.loadWidgetsModule(); |
| 799 | QIcon icon = getViewProviderPtr()->getIcon(); |
| 800 | return wrap.fromQIcon(new QIcon(icon)); |
| 801 | } |
| 802 | |
| 803 | Py::Long ViewProviderPy::getDefaultMode() const |
| 804 | { |
nothing calls this directly
no test coverage detected