A couple of fixes to Brazilian Portuguese translations from Felipe.
[wxWidgets.git] / src / univ / inphand.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/univ/inphand.cpp
3 // Purpose: (trivial) wxInputHandler implementation
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 18.08.00
7 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 // ===========================================================================
12 // declarations
13 // ===========================================================================
14
15 // ---------------------------------------------------------------------------
16 // headers
17 // ---------------------------------------------------------------------------
18
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
21
22 #ifdef __BORLANDC__
23 #pragma hdrstop
24 #endif
25
26 #ifndef WX_PRECOMP
27 #endif // WX_PRECOMP
28
29 #include "wx/univ/inphand.h"
30
31 // ============================================================================
32 // implementation
33 // ============================================================================
34
35 // ----------------------------------------------------------------------------
36 // wxInputHandler
37 // ----------------------------------------------------------------------------
38
39 bool wxInputHandler::HandleMouseMove(wxInputConsumer * WXUNUSED(consumer),
40 const wxMouseEvent& WXUNUSED(event))
41 {
42 return false;
43 }
44
45 bool wxInputHandler::HandleFocus(wxInputConsumer *WXUNUSED(consumer),
46 const wxFocusEvent& WXUNUSED(event))
47 {
48 return false;
49 }
50
51 bool wxInputHandler::HandleActivation(wxInputConsumer *WXUNUSED(consumer),
52 bool WXUNUSED(activated))
53 {
54 return false;
55 }
56
57 wxInputHandler::~wxInputHandler()
58 {
59 }
60