| 105 | } |
| 106 | |
| 107 | bool FileTypeList::contains(const FileTypes::Type& type) const |
| 108 | { |
| 109 | for (const auto& t : type_list_) |
| 110 | { |
| 111 | if (t == type) |
| 112 | { |
| 113 | return true; |
| 114 | } |
| 115 | } |
| 116 | return false; |
| 117 | } |
| 118 | |
| 119 | String FileTypeList::toFileDialogFilter(const FilterLayout style, bool add_all_filter) const |
| 120 | { |
no outgoing calls