-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 | |||
@@ -22,7 +22,7 @@ public: | |||
22 | Interface *addNewInterface( const QString& ); | 22 | Interface *addNewInterface( const QString& ); |
23 | bool remove( Interface* iface ); | 23 | bool remove( Interface* iface ); |
24 | QString getPixmapName( Interface* ) {return QString::fromLatin1("Tux"); } | 24 | QString getPixmapName( Interface* ) {return QString::fromLatin1("Tux"); } |
25 | void receive( const QCString&, const QByteArray& ar ) {} // don't listen | 25 | void receive( const QCString& msg, const QByteArray& ar ) { Q_CONST_UNUSED(msg) Q_CONST_UNUSED(ar) } // don't listen |
26 | private: | 26 | private: |
27 | QList<Interface> m_interfaces; | 27 | QList<Interface> m_interfaces; |
28 | }; | 28 | }; |