Override BView::InvalidateLayout() as well to avoid stupid compiler warning.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21359 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
21156fc9e0
commit
691d242ba1
@ -118,6 +118,13 @@ ViewContainer::MouseMoved(BPoint where, uint32 code, const BMessage* message)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
ViewContainer::InvalidateLayout(bool descendants)
|
||||||
|
{
|
||||||
|
BView::InvalidateLayout(descendants);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
ViewContainer::InvalidateLayout()
|
ViewContainer::InvalidateLayout()
|
||||||
{
|
{
|
||||||
|
@ -28,6 +28,8 @@ public:
|
|||||||
virtual void MouseMoved(BPoint where, uint32 code,
|
virtual void MouseMoved(BPoint where, uint32 code,
|
||||||
const BMessage* message);
|
const BMessage* message);
|
||||||
|
|
||||||
|
virtual void InvalidateLayout(bool descendants);
|
||||||
|
|
||||||
// View hooks
|
// View hooks
|
||||||
|
|
||||||
virtual void InvalidateLayout();
|
virtual void InvalidateLayout();
|
||||||
|
Loading…
Reference in New Issue
Block a user