| 179 | } |
| 180 | |
| 181 | std::vector<QString> UTMZoneParameter::specValues(const QString& edit_value) const |
| 182 | { |
| 183 | auto zone = QString { edit_value }; |
| 184 | zone.remove(QLatin1String(" N")); |
| 185 | zone.replace(QLatin1String(" S"), QLatin1String(" +south")); |
| 186 | return { zone }; |
| 187 | } |
| 188 | |
| 189 | QString UTMZoneParameter::value(const QWidget* edit_widget) const |
| 190 | { |
nothing calls this directly
no test coverage detected