Cleaning of sources (Univ related files). -1/TRUE/FALSE/wxIDY_ANY/wxDefaultCoord/whitespaces/!! issues.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -66,13 +66,13 @@ void wxInputConsumer::CreateInputHandler(const wxString& inphandler)
|
||||
|
||||
void wxInputConsumer::OnKeyDown(wxKeyEvent& event)
|
||||
{
|
||||
if ( !m_inputHandler || !m_inputHandler->HandleKey(this, event, TRUE) )
|
||||
if ( !m_inputHandler || !m_inputHandler->HandleKey(this, event, true) )
|
||||
event.Skip();
|
||||
}
|
||||
|
||||
void wxInputConsumer::OnKeyUp(wxKeyEvent& event)
|
||||
{
|
||||
if ( !m_inputHandler || !m_inputHandler->HandleKey(this, event, FALSE) )
|
||||
if ( !m_inputHandler || !m_inputHandler->HandleKey(this, event, false) )
|
||||
event.Skip();
|
||||
}
|
||||
|
||||
@@ -103,6 +103,6 @@ bool wxInputConsumer::PerformAction(const wxControlAction& WXUNUSED(action),
|
||||
long WXUNUSED(numArg),
|
||||
const wxString& WXUNUSED(strArg))
|
||||
{
|
||||
return FALSE;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user