| 1070 | } |
| 1071 | |
| 1072 | static std::string convertRectToCoord(std::string_view _value) |
| 1073 | { |
| 1074 | IntRect rect = IntRect::parse(_value); |
| 1075 | IntCoord coord(rect.left, rect.top, rect.width(), rect.height()); |
| 1076 | return coord.print(); |
| 1077 | } |
| 1078 | |
| 1079 | using SetString = std::set<std::string, std::less<>>; |
| 1080 | static MapString mPropertyRename; |
no test coverage detected