Removed GetAdjustedBestSize().

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-10-30 18:20:33 +00:00
parent a6809fb2ad
commit cbc82a22cc
2 changed files with 2 additions and 12 deletions

View File

@@ -884,9 +884,9 @@ wxSize wxSplitterWindow::DoGetBestSize() const
// get best sizes of subwindows
wxSize size1, size2;
if ( m_windowOne )
size1 = m_windowOne->GetAdjustedBestSize();
size1 = m_windowOne->GetBestFittingSize();
if ( m_windowTwo )
size2 = m_windowTwo->GetAdjustedBestSize();
size2 = m_windowTwo->GetBestFittingSize();
// sum them
//