| 238 | } |
| 239 | |
| 240 | void OpenSaveFileDialog::setRecentFolders(const VectorUString& _listFolders) |
| 241 | { |
| 242 | mCurrentFolderField->removeAllItems(); |
| 243 | |
| 244 | for (const auto& _listFolder : _listFolders) |
| 245 | mCurrentFolderField->addItem(_listFolder); |
| 246 | } |
| 247 | |
| 248 | void OpenSaveFileDialog::notifyDirectoryComboChangePosition(MyGUI::ComboBox* _sender, size_t _index) |
| 249 | { |
nothing calls this directly
no test coverage detected