| 2759 | } |
| 2760 | |
| 2761 | static CaretAnnotation::CaretSymbol caretSymbolFromString(const QString &symbol) |
| 2762 | { |
| 2763 | if (symbol == QLatin1String("None")) { |
| 2764 | return CaretAnnotation::None; |
| 2765 | } else if (symbol == QLatin1String("P")) { |
| 2766 | return CaretAnnotation::P; |
| 2767 | } |
| 2768 | return CaretAnnotation::None; |
| 2769 | } |
| 2770 | |
| 2771 | void CaretAnnotationPrivate::setAnnotationProperties(const QDomNode &node) |
| 2772 | { |
no outgoing calls
no test coverage detected