]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/inphand.cpp
preserve type when loaded image is rescaled, #11543
[wxWidgets.git] / src / univ / inphand.cpp
index 73357762fb3abb9943dfe9e843a6fd19435c28df..325a9b36f049e684678a1ac134f77076687244bb 100644 (file)
 // 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()