summaryrefslogtreecommitdiff
path: root/inputmethods/kjumpx/keyboardimpl.h
Unidiff
Diffstat (limited to 'inputmethods/kjumpx/keyboardimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/kjumpx/keyboardimpl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/inputmethods/kjumpx/keyboardimpl.h b/inputmethods/kjumpx/keyboardimpl.h
index 1ff1034..e57121e 100644
--- a/inputmethods/kjumpx/keyboardimpl.h
+++ b/inputmethods/kjumpx/keyboardimpl.h
@@ -22,30 +22,29 @@ class QPixmap;
22 22
23namespace 23namespace
24{ 24{
25 25
26class KeyboardImpl : public InputMethodInterface 26class KeyboardImpl : public InputMethodInterface
27{ 27{
28public: 28public:
29 KeyboardImpl(); 29 KeyboardImpl();
30 virtual ~KeyboardImpl(); 30 virtual ~KeyboardImpl();
31 31
32#ifndef QT_NO_COMPONENT 32#ifndef QT_NO_COMPONENT
33 QRESULT queryInterface( const QUuid&, QUnknownInterface** ); 33 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
34 Q_REFCOUNT 34 Q_REFCOUNT
35#endif 35#endif
36 36
37 virtual QWidget *inputMethod( QWidget *parent, Qt::WFlags f ); 37 virtual QWidget *inputMethod( QWidget *parent, Qt::WFlags f );
38 virtual void resetState(); 38 virtual void resetState();
39 virtual QPixmap *icon(); 39 virtual QPixmap *icon();
40 virtual QString name(); 40 virtual QString name();
41 virtual void onKeyPress( QObject *receiver, const char *slot ); 41 virtual void onKeyPress( QObject *receiver, const char *slot );
42 42
43private: 43private:
44 KJumpX::Keyboard *input; 44 KJumpX::Keyboard *input;
45 QPixmap *icn; 45 QPixmap *icn;
46 ulong ref;
47}; 46};
48 47
49} // anonymous namespace 48} // anonymous namespace
50 49
51#endif 50#endif