X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6aa89a22b8e47000c98bff05c6f545f331f1c353..eea4d01c65f9b29baa1193db762b4c6b8144af24:/src/univ/inphand.cpp diff --git a/src/univ/inphand.cpp b/src/univ/inphand.cpp index 92764b60eb..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 // --------------------------------------------------------------------------- -#ifdef __GNUG__ - #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()