X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..e28cc3ca0aa9bb1c7e9613c447ca94b13a8bc858:/src/univ/inphand.cpp diff --git a/src/univ/inphand.cpp b/src/univ/inphand.cpp index 73357762fb..0c05592dab 100644 --- a/src/univ/inphand.cpp +++ b/src/univ/inphand.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: univ/inphand.cpp +// Name: src/univ/inphand.cpp // Purpose: (trivial) wxInputHandler implementation // Author: Vadim Zeitlin // Modified by: @@ -17,10 +17,6 @@ // headers // --------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "inphand.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -44,19 +40,19 @@ bool wxInputHandler::HandleMouseMove(wxInputConsumer * WXUNUSED(consumer), const wxMouseEvent& WXUNUSED(event)) { - return FALSE; + return false; } bool wxInputHandler::HandleFocus(wxInputConsumer *WXUNUSED(consumer), const wxFocusEvent& WXUNUSED(event)) { - return FALSE; + return false; } bool wxInputHandler::HandleActivation(wxInputConsumer *WXUNUSED(consumer), bool WXUNUSED(activated)) { - return FALSE; + return false; } wxInputHandler::~wxInputHandler()