summaryrefslogtreecommitdiff
path: root/inputmethods/unikeyboard
authordavipt <davipt>2002-06-28 13:36:05 (UTC)
committer davipt <davipt>2002-06-28 13:36:05 (UTC)
commitd4626cc76127b7022c8555ea11afbb289714c851 (patch) (unidiff)
tree3c4606b2574285f324c21ef78fd47ba6e55d8219 /inputmethods/unikeyboard
parenta94b5ab5cee9922fc02deb14a252b0c998dde1f7 (diff)
downloadopie-d4626cc76127b7022c8555ea11afbb289714c851.zip
opie-d4626cc76127b7022c8555ea11afbb289714c851.tar.gz
opie-d4626cc76127b7022c8555ea11afbb289714c851.tar.bz2
Fix bug #9 except that we need something else to translate keyboard names.
Diffstat (limited to 'inputmethods/unikeyboard') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/unikeyboard/unikeyboardimpl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/inputmethods/unikeyboard/unikeyboardimpl.cpp b/inputmethods/unikeyboard/unikeyboardimpl.cpp
index fe601e0..aa05b31 100644
--- a/inputmethods/unikeyboard/unikeyboardimpl.cpp
+++ b/inputmethods/unikeyboard/unikeyboardimpl.cpp
@@ -72,13 +72,14 @@ QPixmap *UniKeyboardImpl::icon()
72 icn = new QPixmap( (const char **)uni_xpm ); 72 icn = new QPixmap( (const char **)uni_xpm );
73 return icn; 73 return icn;
74} 74}
75 75
76QString UniKeyboardImpl::name() 76QString UniKeyboardImpl::name()
77{ 77{
78 return qApp->translate( "InputMethods", "Unicode" ); 78 // return qApp->translate( "InputMethods", "Unicode" );
79 return "Unicode";
79} 80}
80 81
81void UniKeyboardImpl::onKeyPress( QObject *receiver, const char *slot ) 82void UniKeyboardImpl::onKeyPress( QObject *receiver, const char *slot )
82{ 83{
83 if ( input ) 84 if ( input )
84 QObject::connect( input, SIGNAL(key(ushort,ushort,ushort,bool,bool)), receiver, slot ); 85 QObject::connect( input, SIGNAL(key(ushort,ushort,ushort,bool,bool)), receiver, slot );