| 131 | } |
| 132 | |
| 133 | std::vector<std::string> DisplaySettingsDialog::createVideoModeStrings() const |
| 134 | { |
| 135 | std::vector<std::string> result; |
| 136 | result.emplace_back("Desktop"); |
| 137 | for (int i = 0; i < _videoModesCount; ++i) { |
| 138 | result.emplace_back(createVideoModeString(_videoModes[i])); |
| 139 | } |
| 140 | |
| 141 | return result; |
| 142 | } |
nothing calls this directly
no test coverage detected