Added a member to know when an update request has been sent

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12266 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Adi Oanca 2005-04-06 20:52:58 +00:00
parent 75efbbb3ed
commit ddc9feb406
2 changed files with 6 additions and 2 deletions

View File

@ -84,9 +84,10 @@ WinBorder::WinBorder(const BRect &r, const char *name, const int32 look, const i
// unlike BViews, windows start off as hidden
fHidden = true;
fInUpdate = false;
fRequestSent = false;
fServerWin = win;
fClassID = AS_WINBORDER_CLASS;
cnt = 0;
cnt = 0; // for debugging
fMouseButtons = 0;
fKeyModifiers = 0;
fDecorator = NULL;

View File

@ -125,9 +125,12 @@ protected:
bool fIsZooming;
bool fInUpdate;
int cnt;
bool fRequestSent;
float fMinWidth, fMaxWidth;
float fMinHeight, fMaxHeight;
int cnt; // for debugging
};
#endif