| 78 | } |
| 79 | |
| 80 | QLayoutItem* ElaFlowLayout::takeAt(int index) |
| 81 | { |
| 82 | Q_D(ElaFlowLayout); |
| 83 | if (index >= 0 && index < d->_itemList.size()) |
| 84 | { |
| 85 | return d->_itemList.takeAt(index); |
| 86 | } |
| 87 | return nullptr; |
| 88 | } |
| 89 | |
| 90 | void ElaFlowLayout::setIsAnimation(bool isAnimation) |
| 91 | { |
no outgoing calls
no test coverage detected