equal
deleted
inserted
replaced
27 #include "hbinputeditorinterface.h" |
27 #include "hbinputeditorinterface.h" |
28 |
28 |
29 /*! |
29 /*! |
30 \internal |
30 \internal |
31 */ |
31 */ |
32 HbInputMethodNull* HbInputMethodNull::Instance() |
32 HbInputMethodNull *HbInputMethodNull::Instance() |
33 { |
33 { |
34 static HbInputMethodNull myInstance; |
34 static HbInputMethodNull myInstance; |
35 return &myInstance; |
35 return &myInstance; |
36 } |
36 } |
37 |
37 |
81 } |
81 } |
82 |
82 |
83 /*! |
83 /*! |
84 \internal |
84 \internal |
85 */ |
85 */ |
86 bool HbInputMethodNull::filterEvent(const QEvent* event) |
86 bool HbInputMethodNull::filterEvent(const QEvent *event) |
87 { |
87 { |
88 Q_UNUSED(event); |
88 Q_UNUSED(event); |
89 return false; |
89 return false; |
90 } |
90 } |
91 |
91 |
92 /*! |
92 /*! |
93 \internal |
93 \internal |
94 */ |
94 */ |
95 void HbInputMethodNull::mouseHandler(int x, QMouseEvent* event) |
95 void HbInputMethodNull::mouseHandler(int x, QMouseEvent *event) |
96 { |
96 { |
97 Q_UNUSED(x); |
97 Q_UNUSED(x); |
98 Q_UNUSED(event); |
98 Q_UNUSED(event); |
99 } |
99 } |
100 |
100 |