author | zecke <zecke> | 2004-09-10 11:01:04 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-10 11:01:04 (UTC) |
commit | ad5c2ec48c34fe41d826893c5b0fb24b08bc639d (patch) (side-by-side diff) | |
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 @@ -359,3 +359,3 @@ void CardMonitor::execCommand( const QString &command ) { -void CardMonitor::slotExited( OProcess* proc ) { +void CardMonitor::slotExited( OProcess* ) { 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 @@ -209,3 +209,3 @@ void IrdaApplet::showDiscovered ( ) - // odebug << discoveredDevice + "(" + deviceAddr + ")" << oendl; + // odebug << discoveredDevice + "(" + deviceAddr + ")" << oendl; @@ -221,3 +221,3 @@ void IrdaApplet::showDiscovered ( ) for ( it = m_devices. begin ( ); it != m_devices. end ( ); ) { - // odebug << "IrdaMon: delete " + it.currentKey() + "=" + *devicesAvailable[it.currentKey()] + "?" << oendl; + // odebug << "IrdaMon: delete " + it.currentKey() + "=" + *devicesAvailable[it.currentKey()] + "?" << oendl; @@ -333,3 +333,3 @@ void IrdaApplet::paintEvent ( QPaintEvent * ) */ -void IrdaApplet::slotMessage( const QCString& str, const QByteArray& ar ) { +void IrdaApplet::slotMessage( const QCString& str, const QByteArray& ) { if ( str == "enableIrda()") { |