-rw-r--r-- | examples/networksettings/examplemodule.h | 2 |
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 @@ -19,13 +19,13 @@ public: QWidget *information( Interface* ); QList<Interface> getInterfaces(); void possibleNewInterfaces( QMap<QString, QString>& ); 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; }; extern "C" { void* create_plugin() { |