-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 | |||
@@ -106,12 +106,12 @@ InputMethods::InputMethods( QWidget *parent ) : | |||
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 | ||