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:
Robert Roebling
2002-02-15 22:18:49 +00:00
parent f068b957f0
commit 2739864340
2 changed files with 58 additions and 48 deletions

View File

@@ -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 )