| 110 | } |
| 111 | |
| 112 | QString LabelItem::name() const |
| 113 | { |
| 114 | if (itemData.count() > Name) { |
| 115 | return itemData.at(Name).toString(); |
| 116 | } |
| 117 | |
| 118 | QLOG_WARN() << "Name for label item not available"; |
| 119 | |
| 120 | return ""; |
| 121 | } |
| 122 | |
| 123 | void LabelItem::setName(const QString &name) |
| 124 | { |
no test coverage detected