X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/442b35b53bf95f5c6c003ea9ddbefd17adbc2a00..04fa04d8067d235ab45b5bc05b65f0679634b541:/src/univ/inphand.cpp diff --git a/src/univ/inphand.cpp b/src/univ/inphand.cpp index 4b1d9fea60..0c05592dab 100644 --- a/src/univ/inphand.cpp +++ b/src/univ/inphand.cpp @@ -1,12 +1,12 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: univ/inphand.cpp +// Name: src/univ/inphand.cpp // Purpose: (trivial) wxInputHandler implementation // Author: Vadim Zeitlin // Modified by: // Created: 18.08.00 // RCS-ID: $Id$ // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com) -// Licence: wxWindows license +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // =========================================================================== @@ -17,10 +17,6 @@ // headers // --------------------------------------------------------------------------- -#ifdef __GNUG__ - #pragma implementation "inphand.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -41,22 +37,22 @@ // wxInputHandler // ---------------------------------------------------------------------------- -bool wxInputHandler::HandleMouseMove(wxControl * WXUNUSED(control), +bool wxInputHandler::HandleMouseMove(wxInputConsumer * WXUNUSED(consumer), const wxMouseEvent& WXUNUSED(event)) { - return FALSE; + return false; } -bool wxInputHandler::HandleFocus(wxControl *WXUNUSED(control), +bool wxInputHandler::HandleFocus(wxInputConsumer *WXUNUSED(consumer), const wxFocusEvent& WXUNUSED(event)) { - return FALSE; + return false; } -bool wxInputHandler::HandleActivation(wxControl *WXUNUSED(control), +bool wxInputHandler::HandleActivation(wxInputConsumer *WXUNUSED(consumer), bool WXUNUSED(activated)) { - return FALSE; + return false; } wxInputHandler::~wxInputHandler()