Got rid of fAdFlags whatever that was meant to be.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15109 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-11-24 12:21:07 +00:00
parent 5ed0556236
commit 343e4ff465
3 changed files with 0 additions and 7 deletions

View File

@ -62,7 +62,6 @@ Layer::Layer(BRect frame, const char* name, int32 token,
fViewToken(token),
fFlags(flags),
fAdFlags(0),
fResizeMode(resize),
fEventMask(0UL),
fEventOptions(0UL),

View File

@ -37,10 +37,6 @@ enum {
B_LAYER_ACTION_RESIZE
};
enum {
B_LAYER_CHILDREN_DEPENDANT = 0x1000U,
};
class ServerApp;
class RootLayer;
class DrawingEngine;
@ -258,7 +254,6 @@ class Layer {
int32 fViewToken;
uint32 fFlags;
uint16 fAdFlags;
uint32 fResizeMode;
uint32 fEventMask;
uint32 fEventOptions;

View File

@ -106,7 +106,6 @@ WinBorder::WinBorder(const BRect &frame,
// unlike BViews, windows start off as hidden
fHidden = true;
fWindow = window;
fAdFlags = fAdFlags | B_LAYER_CHILDREN_DEPENDANT;
fFlags = B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE;
QuietlySetFeel(feel);