-rw-r--r-- | core/launcher/inputmethods.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/launcher/inputmethods.cpp b/core/launcher/inputmethods.cpp index acd0d59..765dfe9 100644 --- a/core/launcher/inputmethods.cpp +++ b/core/launcher/inputmethods.cpp | |||
@@ -101,22 +101,22 @@ InputMethods::InputMethods( QWidget *parent ) : | |||
101 | this, SLOT(resetStates()) ); | 101 | this, SLOT(resetStates()) ); |
102 | 102 | ||
103 | loadInputMethods(); | 103 | loadInputMethods(); |
104 | } | 104 | } |
105 | 105 | ||
106 | InputMethods::~InputMethods() | 106 | InputMethods::~InputMethods() |
107 | { | 107 | { |
108 | #ifndef SINGLE_APP | 108 | #ifndef SINGLE_APP |
109 | QValueList<InputMethod>::Iterator mit; | 109 | QValueList<InputMethod>::Iterator mit; |
110 | for ( mit = inputMethodList.begin(); mit != inputMethodList.end(); ++mit ) { | 110 | for ( mit = inputMethodList.begin(); mit != inputMethodList.end(); ++mit ) { |
111 | int i = (*mit).interface->release(); | 111 | (void) (*mit).interface->release(); |
112 | (*mit).library->unload(); | 112 | (*mit).library->unload(); |
113 | delete (*mit).library; | 113 | delete (*mit).library; |
114 | } | 114 | } |
115 | #endif | 115 | #endif |
116 | } | 116 | } |
117 | 117 | ||
118 | void InputMethods::hideInputMethod() | 118 | void InputMethods::hideInputMethod() |
119 | { | 119 | { |
120 | kbdButton->setOn( FALSE ); | 120 | kbdButton->setOn( FALSE ); |
121 | } | 121 | } |
122 | 122 | ||