| 30 | } |
| 31 | |
| 32 | static bool ValidateCoordinate(const QString &name, double value) |
| 33 | { |
| 34 | auto hasValidPrecision = ValidatePrecision(value); |
| 35 | if (!hasValidPrecision) |
| 36 | EmitWarning(QString("Point set %1 coordinate is outside double precision range.").arg(name), |
| 37 | "Invalid point set input"); |
| 38 | |
| 39 | return hasValidPrecision; |
| 40 | } |
| 41 | |
| 42 | struct QmitkEditPointDialogData |
| 43 | { |
no test coverage detected