Files
Upsilon/apps/regression/even_odd_expression_cell_with_margin.cpp
2018-06-11 13:58:24 +02:00

11 lines
285 B
C++

#include "even_odd_expression_cell_with_margin.h"
namespace Regression {
void EvenOddExpressionCellWithMargin::layoutSubviews() {
KDRect boundsThis = bounds();
m_expressionView.setFrame(KDRect(boundsThis.topLeft(), boundsThis.width() - k_rightMargin, boundsThis.height()));
}
}