Correction for 'protected' compiler error
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14160 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
072db400de
commit
44f8caa786
@ -1704,7 +1704,7 @@ void wxWindowBase::CaptureMouse()
|
|||||||
wxWindow *winOld = GetCapture();
|
wxWindow *winOld = GetCapture();
|
||||||
if ( winOld )
|
if ( winOld )
|
||||||
{
|
{
|
||||||
winOld->DoReleaseMouse();
|
((wxWindowBase*) winOld)->DoReleaseMouse();
|
||||||
// save it on stack
|
// save it on stack
|
||||||
wxWindowNext *item = new wxWindowNext;
|
wxWindowNext *item = new wxWindowNext;
|
||||||
item->win = winOld;
|
item->win = winOld;
|
||||||
@ -1726,7 +1726,7 @@ void wxWindowBase::ReleaseMouse()
|
|||||||
|
|
||||||
if ( ms_winCaptureNext )
|
if ( ms_winCaptureNext )
|
||||||
{
|
{
|
||||||
ms_winCaptureNext->win->DoCaptureMouse();
|
((wxWindowBase*)ms_winCaptureNext->win)->DoCaptureMouse();
|
||||||
|
|
||||||
wxWindowNext *item = ms_winCaptureNext;
|
wxWindowNext *item = ms_winCaptureNext;
|
||||||
ms_winCaptureNext = item->next;
|
ms_winCaptureNext = item->next;
|
||||||
|
Loading…
Reference in New Issue
Block a user