| 48 | } |
| 49 | |
| 50 | bool ExportOptionsHandler::TransferDataFromEditor() |
| 51 | { |
| 52 | if(mEditor) |
| 53 | { |
| 54 | if(auto uiServices = dynamic_cast<ExportOptionsUIServices*>(mEditor.get())) |
| 55 | { |
| 56 | if(!uiServices->TransferDataFromWindow()) |
| 57 | return false; |
| 58 | } |
| 59 | mEditor->Store(*gPrefs); |
| 60 | } |
| 61 | return true; |
| 62 | } |
| 63 | |
| 64 | ExportProcessor::Parameters ExportOptionsHandler::GetParameters() const |
| 65 | { |
no test coverage detected