author | zecke <zecke> | 2004-09-10 11:01:04 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-10 11:01:04 (UTC) |
commit | ad5c2ec48c34fe41d826893c5b0fb24b08bc639d (patch) (unidiff) | |
tree | 589ddde4441795af4147b9b9dd82e4381a0dc6f9 | |
parent | 1ce7786a16ee7b9679391090eeedc4cbcaab81ca (diff) | |
download | opie-ad5c2ec48c34fe41d826893c5b0fb24b08bc639d.zip opie-ad5c2ec48c34fe41d826893c5b0fb24b08bc639d.tar.gz opie-ad5c2ec48c34fe41d826893c5b0fb24b08bc639d.tar.bz2 |
Fix warnings about unused parameter
-rw-r--r-- | core/applets/cardmon/cardmon.cpp | 2 | ||||
-rw-r--r-- | core/applets/irdaapplet/irda.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp index 3f07b41..48146ab 100644 --- a/core/applets/cardmon/cardmon.cpp +++ b/core/applets/cardmon/cardmon.cpp | |||
@@ -357,7 +357,7 @@ void CardMonitor::execCommand( const QString &command ) { | |||
357 | } | 357 | } |
358 | } | 358 | } |
359 | 359 | ||
360 | void CardMonitor::slotExited( OProcess* proc ) { | 360 | void CardMonitor::slotExited( OProcess* ) { |
361 | 361 | ||
362 | if( m_process->normalExit() ) { | 362 | if( m_process->normalExit() ) { |
363 | int ret = m_process->exitStatus(); | 363 | int ret = m_process->exitStatus(); |
diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp index 7122b40..267714e 100644 --- a/core/applets/irdaapplet/irda.cpp +++ b/core/applets/irdaapplet/irda.cpp | |||
@@ -207,7 +207,7 @@ void IrdaApplet::showDiscovered ( ) | |||
207 | discoveredDevice = line. mid ( line. find ( ':' ) + 2, line. find ( ',' ) - line. find ( ':' ) - 2 ); | 207 | discoveredDevice = line. mid ( line. find ( ':' ) + 2, line. find ( ',' ) - line. find ( ':' ) - 2 ); |
208 | deviceAddr = line. mid ( line. find ( "daddr:" ) + 9, 8 ); | 208 | deviceAddr = line. mid ( line. find ( "daddr:" ) + 9, 8 ); |
209 | 209 | ||
210 | // odebug << discoveredDevice + "(" + deviceAddr + ")" << oendl; | 210 | // odebug << discoveredDevice + "(" + deviceAddr + ")" << oendl; |
211 | 211 | ||
212 | if ( !m_devices. contains ( deviceAddr )) { | 212 | if ( !m_devices. contains ( deviceAddr )) { |
213 | popup ( tr( "Found:" ) + " " + discoveredDevice ); | 213 | popup ( tr( "Found:" ) + " " + discoveredDevice ); |
@@ -219,7 +219,7 @@ void IrdaApplet::showDiscovered ( ) | |||
219 | } | 219 | } |
220 | 220 | ||
221 | for ( it = m_devices. begin ( ); it != m_devices. end ( ); ) { | 221 | for ( it = m_devices. begin ( ); it != m_devices. end ( ); ) { |
222 | // odebug << "IrdaMon: delete " + it.currentKey() + "=" + *devicesAvailable[it.currentKey()] + "?" << oendl; | 222 | // odebug << "IrdaMon: delete " + it.currentKey() + "=" + *devicesAvailable[it.currentKey()] + "?" << oendl; |
223 | 223 | ||
224 | if ( it. data ( ). left ( 3 ) == "+++" ) { | 224 | if ( it. data ( ). left ( 3 ) == "+++" ) { |
225 | popup ( tr( "Lost:" ) + " " + it. data ( ). mid ( 3 )); | 225 | popup ( tr( "Lost:" ) + " " + it. data ( ). mid ( 3 )); |
@@ -331,7 +331,7 @@ void IrdaApplet::paintEvent ( QPaintEvent * ) | |||
331 | * a and b will temp enable the IrDa device and disable will disable it again if it wasn't on | 331 | * a and b will temp enable the IrDa device and disable will disable it again if it wasn't on |
332 | * c) listDevices: We will return a list of known devices | 332 | * c) listDevices: We will return a list of known devices |
333 | */ | 333 | */ |
334 | void IrdaApplet::slotMessage( const QCString& str, const QByteArray& ar ) { | 334 | void IrdaApplet::slotMessage( const QCString& str, const QByteArray& ) { |
335 | if ( str == "enableIrda()") { | 335 | if ( str == "enableIrda()") { |
336 | m_wasOn = checkIrdaStatus(); | 336 | m_wasOn = checkIrdaStatus(); |
337 | m_wasDiscover = checkIrdaDiscoveryStatus(); | 337 | m_wasDiscover = checkIrdaDiscoveryStatus(); |