*** empty log message ***

svn path=/trunk/boinc/; revision=4817
This commit is contained in:
Rom Walton 2004-12-10 23:48:47 +00:00
parent 2af4e5e390
commit bdc472415c
1 changed files with 4 additions and 2 deletions

View File

@ -74,11 +74,13 @@ CBOINCBaseView::CBOINCBaseView( wxNotebook* pNotebook, wxWindowID iHtmlWindowID,
m_pListPane = new CBOINCListCtrl( this, iListWindowID, iListWindowFlags );
wxASSERT(NULL != m_pListPane);
itemFlexGridSizer->Add(m_pTaskPane, 0, wxGROW|wxGROW|wxALL, 1);
itemFlexGridSizer->Add(m_pListPane, 0, wxGROW|wxGROW|wxALL, 1);
itemFlexGridSizer->Add(m_pTaskPane, 1, wxGROW|wxALL, 1);
itemFlexGridSizer->Add(m_pListPane, 1, wxGROW|wxALL, 1);
SetSizer(itemFlexGridSizer);
SetAutoLayout(TRUE);
itemFlexGridSizer->Fit(this);
}