| 41 | } |
| 42 | |
| 43 | int ElaFlowLayout::horizontalSpacing() const |
| 44 | { |
| 45 | Q_D(const ElaFlowLayout); |
| 46 | if (d->_hSpacing >= 0) |
| 47 | { |
| 48 | return d->_hSpacing; |
| 49 | } |
| 50 | else |
| 51 | { |
| 52 | return d->_smartSpacing(QStyle::PM_LayoutHorizontalSpacing); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | int ElaFlowLayout::verticalSpacing() const |
| 57 | { |
no test coverage detected