3 changes to remove infinite loops or crashes
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3670 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
0147056b81
commit
5d5860e4f1
@ -309,7 +309,7 @@ BTabView::BTabView(BMessage *archive)
|
|||||||
: BView(archive),
|
: BView(archive),
|
||||||
fFocus(-1)
|
fFocus(-1)
|
||||||
{
|
{
|
||||||
fContainerView == NULL;
|
fContainerView = NULL;
|
||||||
fTabList = new BList;
|
fTabList = new BList;
|
||||||
|
|
||||||
int16 width;
|
int16 width;
|
||||||
@ -418,7 +418,7 @@ status_t BTabView::Archive(BMessage *archive, bool deep) const
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
status_t BTabView::Perform(perform_code d, void *arg)
|
status_t BTabView::Perform(perform_code d, void *arg)
|
||||||
{
|
{
|
||||||
return BTabView::Perform(d, arg);
|
return BView::Perform(d, arg);
|
||||||
}
|
}
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
void BTabView::WindowActivated(bool active)
|
void BTabView::WindowActivated(bool active)
|
||||||
@ -689,7 +689,7 @@ void BTabView::SetResizingMode(uint32 mode)
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
void BTabView::GetPreferredSize(float *width, float *height)
|
void BTabView::GetPreferredSize(float *width, float *height)
|
||||||
{
|
{
|
||||||
BTabView::GetPreferredSize(width, height);
|
BView::GetPreferredSize(width, height);
|
||||||
}
|
}
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
void BTabView::ResizeToPreferred()
|
void BTabView::ResizeToPreferred()
|
||||||
|
Loading…
Reference in New Issue
Block a user