summaryrefslogtreecommitdiff
path: root/noncore/applets/pcmcia/pcmcia.cpp
Unidiff
Diffstat (limited to 'noncore/applets/pcmcia/pcmcia.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/pcmcia/pcmcia.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/applets/pcmcia/pcmcia.cpp b/noncore/applets/pcmcia/pcmcia.cpp
index 4fcc189..6c18e86 100644
--- a/noncore/applets/pcmcia/pcmcia.cpp
+++ b/noncore/applets/pcmcia/pcmcia.cpp
@@ -132,5 +132,5 @@ void PcmciaManager::mousePressEvent( QMouseEvent* )
132 submenu->insertItem( "&Resume", RESUME+i*100 ); 132 submenu->insertItem( "&Resume", RESUME+i*100 );
133 submenu->insertItem( "&Configure", CONFIGURE+i*100 ); 133 submenu->insertItem( "&Configure", CONFIGURE+i*100 );
134 134
135 submenu->setItemEnabled( EJECT+i*100, !it.current()->isEmpty() ); 135 submenu->setItemEnabled( EJECT+i*100, !it.current()->isEmpty() );
136 submenu->setItemEnabled( INSERT+i*100, it.current()->isEmpty() ); 136 submenu->setItemEnabled( INSERT+i*100, it.current()->isEmpty() );
@@ -138,5 +138,5 @@ void PcmciaManager::mousePressEvent( QMouseEvent* )
138 submenu->setItemEnabled( RESUME+i*100, !it.current()->isEmpty() && it.current()->isSuspended() ); 138 submenu->setItemEnabled( RESUME+i*100, !it.current()->isEmpty() && it.current()->isSuspended() );
139 submenu->setItemEnabled( CONFIGURE+i*100, !it.current()->isEmpty() ); 139 submenu->setItemEnabled( CONFIGURE+i*100, !it.current()->isEmpty() );
140 140
141 connect( submenu, SIGNAL(activated(int)), this, SLOT(userCardAction(int)) ); 141 connect( submenu, SIGNAL(activated(int)), this, SLOT(userCardAction(int)) );
142 menu->insertItem( tr( "%1: %2" ).arg( i++ ).arg( it.current()->identity() ), submenu, 1 ); 142 menu->insertItem( tr( "%1: %2" ).arg( i++ ).arg( it.current()->identity() ), submenu, 1 );
@@ -171,5 +171,5 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
171 bool newCard = true; 171 bool newCard = true;
172 OPcmciaSocket* theCard = 0; 172 OPcmciaSocket* theCard = 0;
173 173
174 while ( it.current() && newCard ) 174 while ( it.current() && newCard )
175 { 175 {
@@ -235,5 +235,5 @@ void PcmciaManager::paintEvent( QPaintEvent * )
235 QPainter p( this ); 235 QPainter p( this );
236 odebug << "sockets = " << OPcmciaSystem::instance()->count() << ", cards = " << OPcmciaSystem::instance()->cardCount() << oendl; 236 odebug << "sockets = " << OPcmciaSystem::instance()->count() << ", cards = " << OPcmciaSystem::instance()->cardCount() << oendl;
237 237
238 if ( OPcmciaSystem::instance()->cardCount() ) 238 if ( OPcmciaSystem::instance()->cardCount() )
239 { 239 {
@@ -259,8 +259,8 @@ void PcmciaManager::userCardAction( int action )
259{ 259{
260 odebug << "user action requested. action = " << action << oendl; 260 odebug << "user action requested. action = " << action << oendl;
261 261
262 int socket = action / 100; 262 int socket = action / 100;
263 int what = action % 100; 263 int what = action % 100;
264 264
265 switch ( what ) 265 switch ( what )
266 { 266 {