Capture/ReleaseMouse() prefixed with Do for the other ports (OS/2, MGL, Motif, Mac)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -713,7 +713,7 @@ wxString wxWindow::GetTitle() const
|
||||
return wxString(title);
|
||||
}
|
||||
|
||||
void wxWindow::CaptureMouse()
|
||||
void wxWindow::DoCaptureMouse()
|
||||
{
|
||||
g_captureWindow = this;
|
||||
if ( m_winCaptured )
|
||||
@@ -726,7 +726,7 @@ void wxWindow::CaptureMouse()
|
||||
m_winCaptured = TRUE;
|
||||
}
|
||||
|
||||
void wxWindow::ReleaseMouse()
|
||||
void wxWindow::DoReleaseMouse()
|
||||
{
|
||||
g_captureWindow = NULL;
|
||||
if ( !m_winCaptured )
|
||||
|
Reference in New Issue
Block a user