summaryrefslogtreecommitdiff
path: root/examples/networksettings/examplemodule.h
Unidiff
Diffstat (limited to 'examples/networksettings/examplemodule.h') (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
@@ -19,13 +19,13 @@ public:
19 QWidget *information( Interface* ); 19 QWidget *information( Interface* );
20 QList<Interface> getInterfaces(); 20 QList<Interface> getInterfaces();
21 void possibleNewInterfaces( QMap<QString, QString>& ); 21 void possibleNewInterfaces( QMap<QString, QString>& );
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
26private: 26private:
27 QList<Interface> m_interfaces; 27 QList<Interface> m_interfaces;
28}; 28};
29 29
30extern "C" { 30extern "C" {
31 void* create_plugin() { 31 void* create_plugin() {