Remove unused Constraint variables.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38781 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler 2010-09-22 05:55:15 +00:00
parent eb4dd1a2a9
commit 8f60d419c5
2 changed files with 11 additions and 21 deletions

View File

@ -95,27 +95,11 @@ private:
private:
BLayoutItem* fLayoutItem;
LinearSpec* fLS;
BList fConstraints;
XTab* fLeft;
XTab* fRight;
YTab* fTop;
YTab* fBottom;
Constraint* fLeftConstraint;
Constraint* fTopConstraint;
Constraint* fRightConstraint;
Constraint* fBottomConstraint;
Constraint* fMinContentWidth;
Constraint* fMaxContentWidth;
Constraint* fMinContentHeight;
Constraint* fMaxContentHeight;
bool fAutoPreferredContentSize;
Constraint* fPreferredContentWidth;
Constraint* fPreferredContentHeight;
double fContentAspectRatio;
Constraint* fContentAspectRatioC;
Row* fRow;
Column* fColumn;
@ -128,6 +112,17 @@ private:
int32 fRightInset;
int32 fBottomInset;
BList fConstraints;
Constraint* fMinContentWidth;
Constraint* fMaxContentWidth;
Constraint* fMinContentHeight;
Constraint* fMaxContentHeight;
bool fAutoPreferredContentSize;
Constraint* fPreferredContentWidth;
Constraint* fPreferredContentHeight;
double fContentAspectRatio;
Constraint* fContentAspectRatioC;
public:
friend class BALMLayout;

View File

@ -538,11 +538,6 @@ Area::_Init(LinearSpec* ls, XTab* left, YTab* top,
fRightInset = 0;
fBottomInset = 0;
fLeftConstraint = NULL;
fTopConstraint = NULL;
fRightConstraint = NULL;
fBottomConstraint = NULL;
fLS = ls;
fLeft = left;
fRight = right;