-rw-r--r-- | inputmethods/handwriting/handwritingimpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inputmethods/handwriting/handwritingimpl.cpp b/inputmethods/handwriting/handwritingimpl.cpp index c39e1aa..0ea140c 100644 --- a/inputmethods/handwriting/handwritingimpl.cpp +++ b/inputmethods/handwriting/handwritingimpl.cpp | |||
@@ -80,13 +80,14 @@ QPixmap *HandwritingImpl::icon() | |||
80 | icn = new QPixmap( (const char **)pen_xpm ); | 80 | icn = new QPixmap( (const char **)pen_xpm ); |
81 | return icn; | 81 | return icn; |
82 | } | 82 | } |
83 | 83 | ||
84 | QString HandwritingImpl::name() | 84 | QString HandwritingImpl::name() |
85 | { | 85 | { |
86 | return qApp->translate( "InputMethods", "Handwriting" ); | 86 | // return qApp->translate( "InputMethods", "Handwriting" ); |
87 | return "Handwriting"; | ||
87 | } | 88 | } |
88 | 89 | ||
89 | void HandwritingImpl::onKeyPress( QObject *receiver, const char *slot ) | 90 | void HandwritingImpl::onKeyPress( QObject *receiver, const char *slot ) |
90 | { | 91 | { |
91 | if ( input ) | 92 | if ( input ) |
92 | QObject::connect( input, SIGNAL(key(ushort,ushort,ushort,bool,bool)), receiver, slot ); | 93 | QObject::connect( input, SIGNAL(key(ushort,ushort,ushort,bool,bool)), receiver, slot ); |