author | schurig <schurig> | 2003-06-17 12:06:32 (UTC) |
---|---|---|
committer | schurig <schurig> | 2003-06-17 12:06:32 (UTC) |
commit | 507b9d90b2efb68abb58cb93b9647239df99dfb7 (patch) (side-by-side diff) | |
tree | e8438478bf24704a9d8ee6237ebda39fa6357a86 | |
parent | 930291d6f7ed63862c9500faf4cddc89e6ee634f (diff) | |
download | opie-507b9d90b2efb68abb58cb93b9647239df99dfb7.zip opie-507b9d90b2efb68abb58cb93b9647239df99dfb7.tar.gz opie-507b9d90b2efb68abb58cb93b9647239df99dfb7.tar.bz2 |
removed a warning
-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 ) : InputMethods::~InputMethods() { #ifndef SINGLE_APP - QValueList<InputMethod>::Iterator mit; - for ( mit = inputMethodList.begin(); mit != inputMethodList.end(); ++mit ) { - int i = (*mit).interface->release(); - (*mit).library->unload(); - delete (*mit).library; - } + QValueList<InputMethod>::Iterator mit; + for ( mit = inputMethodList.begin(); mit != inputMethodList.end(); ++mit ) { + (void) (*mit).interface->release(); + (*mit).library->unload(); + delete (*mit).library; + } #endif } |