summaryrefslogtreecommitdiff
authorschurig <schurig>2003-06-17 12:06:32 (UTC)
committer schurig <schurig>2003-06-17 12:06:32 (UTC)
commit507b9d90b2efb68abb58cb93b9647239df99dfb7 (patch) (unidiff)
treee8438478bf24704a9d8ee6237ebda39fa6357a86
parent930291d6f7ed63862c9500faf4cddc89e6ee634f (diff)
downloadopie-507b9d90b2efb68abb58cb93b9647239df99dfb7.zip
opie-507b9d90b2efb68abb58cb93b9647239df99dfb7.tar.gz
opie-507b9d90b2efb68abb58cb93b9647239df99dfb7.tar.bz2
removed a warning
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/inputmethods.cpp12
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
@@ -93,38 +93,38 @@ InputMethods::InputMethods( QWidget *parent ) :
93 kbdChoice->setPixmap( QPixmap( (const char **)tri_xpm ) ); 93 kbdChoice->setPixmap( QPixmap( (const char **)tri_xpm ) );
94 kbdChoice->setFixedHeight( 17 ); 94 kbdChoice->setFixedHeight( 17 );
95 kbdChoice->setFixedWidth( 12 ); 95 kbdChoice->setFixedWidth( 12 );
96 kbdChoice->setAutoRaise( TRUE ); 96 kbdChoice->setAutoRaise( TRUE );
97 hbox->addWidget( kbdChoice ); 97 hbox->addWidget( kbdChoice );
98 connect( kbdChoice, SIGNAL(clicked()), this, SLOT(chooseKbd()) ); 98 connect( kbdChoice, SIGNAL(clicked()), this, SLOT(chooseKbd()) );
99 99
100 connect( (QPEApplication*)qApp, SIGNAL(clientMoused()), 100 connect( (QPEApplication*)qApp, SIGNAL(clientMoused()),
101 this, SLOT(resetStates()) ); 101 this, SLOT(resetStates()) );
102 102
103 loadInputMethods(); 103 loadInputMethods();
104} 104}
105 105
106InputMethods::~InputMethods() 106InputMethods::~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
118void InputMethods::hideInputMethod() 118void InputMethods::hideInputMethod()
119{ 119{
120 kbdButton->setOn( FALSE ); 120 kbdButton->setOn( FALSE );
121} 121}
122 122
123void InputMethods::showInputMethod() 123void InputMethods::showInputMethod()
124{ 124{
125 kbdButton->setOn( TRUE ); 125 kbdButton->setOn( TRUE );
126} 126}
127 127
128void InputMethods::showInputMethod(const QString& name) 128void InputMethods::showInputMethod(const QString& name)
129{ 129{
130 int i = 0; 130 int i = 0;