1. Implemented support for different icons for different states (expanded,
selected, combination of them) for the tree control (and doc'd it) 2. removed code which was sending extra event if wxFrame::SetSize() was used 3. important changes to wxWizard interface 4. small compilation corrections git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3756 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		@@ -241,15 +241,6 @@ void wxFrame::DoGetPosition(int *x, int *y) const
 | 
			
		||||
  *y = point.y;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void wxFrame::DoSetSize(int x, int y, int width, int height, int sizeFlags)
 | 
			
		||||
{
 | 
			
		||||
    wxWindow::DoSetSize(x, y, width, height, sizeFlags);
 | 
			
		||||
 | 
			
		||||
    wxSizeEvent event(wxSize(width, height), m_windowId);
 | 
			
		||||
    event.SetEventObject( this );
 | 
			
		||||
    GetEventHandler()->ProcessEvent(event);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool wxFrame::Show(bool show)
 | 
			
		||||
{
 | 
			
		||||
  int cshow;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user