wxX11:
Reorganized SetSize() code so that composite controls work. Removed call to XSync() in the same code. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14245 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -92,9 +92,9 @@ bool wxPopupWindow::Create( wxWindow *parent, int style )
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void wxPopupWindow::DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y), int WXUNUSED(width), int WXUNUSED(height) )
|
||||
void wxPopupWindow::DoMoveWindow(int x, int y, int width, int height )
|
||||
{
|
||||
wxFAIL_MSG( wxT("DoMoveWindow called for wxPopupWindow") );
|
||||
wxWindowX11::DoMoveWindow( x, y, width, height );
|
||||
}
|
||||
|
||||
void wxPopupWindow::DoSetSize( int x, int y, int width, int height, int sizeFlags )
|
||||
|
Reference in New Issue
Block a user