]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/inphand.cpp
Add wxTextCtrl::PositionToCoords() functions for wxMSW and wxGTK.
[wxWidgets.git] / src / univ / inphand.cpp
index 73357762fb3abb9943dfe9e843a6fd19435c28df..0c05592dab7ccdd1528ae0babcbe291d4c669790 100644 (file)
@@ -1,5 +1,5 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        univ/inphand.cpp
+// Name:        src/univ/inphand.cpp
 // Purpose:     (trivial) wxInputHandler implementation
 // Author:      Vadim Zeitlin
 // Modified by:
 // 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"
 
 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()