X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..7738af5957ace396793ee291a280d5a3dbd4821f:/src/univ/inphand.cpp?ds=inline diff --git a/src/univ/inphand.cpp b/src/univ/inphand.cpp index 73357762fb..325a9b36f0 100644 --- a/src/univ/inphand.cpp +++ b/src/univ/inphand.cpp @@ -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()