Little correction to hand-made sizing

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2009-01-25 20:57:43 +00:00
parent 32fc355f09
commit 2a0c05ebe3

View File

@ -328,7 +328,7 @@ void MyFrame::DoSize()
wxCoord y = (2*size.y)/3;
m_listCtrl->SetSize(0, 0, size.x-320, y);
if (m_simpleListCtrl) m_simpleListCtrl->SetSize(size.x-320+1, 0, 320-1, y);
m_logWindow->SetSize(0, y + 1, size.x, size.y - y);
m_logWindow->SetSize(0, y + 1, size.x, size.y - y -1);
}
bool MyFrame::CheckNonVirtual() const