| 68 | } |
| 69 | |
| 70 | std::string PropertyInt2ListControl::getValue() |
| 71 | { |
| 72 | std::string result; |
| 73 | |
| 74 | for (size_t index = 0; index < mList->getItemCount(); index++) |
| 75 | { |
| 76 | if (!result.empty()) |
| 77 | result += "|"; |
| 78 | result += mList->getItemNameAt(index); |
| 79 | } |
| 80 | |
| 81 | return result; |
| 82 | } |
| 83 | |
| 84 | void PropertyInt2ListControl::setValue(std::string_view _value) |
| 85 | { |
no test coverage detected