]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/inphand.cpp
Move code removing "-psn_xxx" command line arguments to common code.
[wxWidgets.git] / src / univ / inphand.cpp
index 995b245870af749b69553cf74149e9d766e4d52c..2738db7a442a186463060c3167b49ad10ce221d6 100644 (file)
@@ -1,12 +1,11 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        univ/inphand.cpp
+// Name:        src/univ/inphand.cpp
 // Purpose:     (trivial) wxInputHandler implementation
 // Author:      Vadim Zeitlin
 // Modified by:
 // Created:     18.08.00
-// RCS-ID:      $Id$
 // Copyright:   (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ===========================================================================
 // headers
 // ---------------------------------------------------------------------------
 
-#ifdef __GNUG__
-    #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()