| 46 | } |
| 47 | |
| 48 | QLayoutItem* FlowLayout::takeAt(int index) { |
| 49 | if (index >= 0 && index < items_.size()) { |
| 50 | return items_.takeAt(index); |
| 51 | } |
| 52 | return nullptr; |
| 53 | } |
| 54 | |
| 55 | Qt::Orientations FlowLayout::expandingDirections() const { |
| 56 | return {}; |
no test coverage detected