summaryrefslogtreecommitdiff
path: root/examples
authorzecke <zecke>2004-09-10 11:02:02 (UTC)
committer zecke <zecke>2004-09-10 11:02:02 (UTC)
commit29ed6115bd14aa95d29cf922fd179a6e470b5d53 (patch) (side-by-side diff)
treef68014c1281cf99ad64ebf4f48a8ffba0a99109d /examples
parentad5c2ec48c34fe41d826893c5b0fb24b08bc639d (diff)
downloadopie-29ed6115bd14aa95d29cf922fd179a6e470b5d53.zip
opie-29ed6115bd14aa95d29cf922fd179a6e470b5d53.tar.gz
opie-29ed6115bd14aa95d29cf922fd179a6e470b5d53.tar.bz2
Make it compile without warning about unused parameters
Diffstat (limited to 'examples') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/networksettings/examplemodule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/networksettings/examplemodule.h b/examples/networksettings/examplemodule.h
index f14a653..211714b 100644
--- a/examples/networksettings/examplemodule.h
+++ b/examples/networksettings/examplemodule.h
@@ -22,7 +22,7 @@ public:
Interface *addNewInterface( const QString& );
bool remove( Interface* iface );
QString getPixmapName( Interface* ) {return QString::fromLatin1("Tux"); }
- void receive( const QCString&, const QByteArray& ar ) {} // don't listen
+ void receive( const QCString& msg, const QByteArray& ar ) { Q_CONST_UNUSED(msg) Q_CONST_UNUSED(ar) } // don't listen
private:
QList<Interface> m_interfaces;
};