Applied patch [ 1171542 ] access static class members via scoping operator
Paul Cornett: A static class member can be accessed as X::member, there is no need for an object or pointer (s.member or p->member). There are also a few bugs with incorrect usage of wxString::Format and wxString::FromAscii. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1115,17 +1115,17 @@ void wxWindowMac::SetFocus()
|
||||
|
||||
void wxWindowMac::DoCaptureMouse()
|
||||
{
|
||||
wxTheApp->s_captureWindow = this ;
|
||||
wxApp::s_captureWindow = this ;
|
||||
}
|
||||
|
||||
wxWindow* wxWindowBase::GetCapture()
|
||||
{
|
||||
return wxTheApp->s_captureWindow ;
|
||||
return wxApp::s_captureWindow ;
|
||||
}
|
||||
|
||||
void wxWindowMac::DoReleaseMouse()
|
||||
{
|
||||
wxTheApp->s_captureWindow = NULL ;
|
||||
wxApp::s_captureWindow = NULL ;
|
||||
}
|
||||
|
||||
#if wxUSE_DRAG_AND_DROP
|
||||
|
Reference in New Issue
Block a user