Added wxSizerItem::SetMinSize that calls m_window->SetSizeHints if not

wxFIXED_MINSIZE, SetInitSize and SetItemMinSize uses SetMinSize, and
fixed [ 934651 ] sizeritem's 'minsize' value has no effect in xrc resources


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26778 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-04-14 23:45:21 +00:00
parent 1ebfafde51
commit 1eba219387
4 changed files with 19 additions and 10 deletions

View File

@@ -735,8 +735,7 @@ bool wxSizer::DoSetItemMinSize( wxWindow *window, int width, int height )
if (item->GetWindow() == window)
{
item->SetInitSize( width, height );
item->GetWindow()->SetSizeHints(width, height);
item->SetMinSize( width, height );
return true;
}
node = node->GetNext();
@@ -815,9 +814,7 @@ bool wxSizer::DoSetItemMinSize( size_t index, int width, int height )
else
{
// ... but the minimal size of spacers and windows in stored in them
item->SetInitSize( width, height );
if (item->GetWindow())
item->GetWindow()->SetSizeHints(width, height);
item->SetMinSize( width, height );
}
return true;