| 26 | } |
| 27 | |
| 28 | void GenericFileDialog::process() |
| 29 | { |
| 30 | if (!ifd::FileDialog::Instance().IsDone("GenericFileDialog", WindowController::get().getContentScaleFactor())) { |
| 31 | return; |
| 32 | } |
| 33 | if (ifd::FileDialog::Instance().HasResult()) { |
| 34 | _actionFunc(ifd::FileDialog::Instance().GetResult()); |
| 35 | } |
| 36 | ifd::FileDialog::Instance().Close(); |
| 37 | } |
nothing calls this directly
no test coverage detected