summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/wlan/wlanmodule.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings/wlan/wlanmodule.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/wlan/wlanmodule.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/noncore/settings/networksettings/wlan/wlanmodule.h b/noncore/settings/networksettings/wlan/wlanmodule.h
index 0963137..027ecec 100644
--- a/noncore/settings/networksettings/wlan/wlanmodule.h
+++ b/noncore/settings/networksettings/wlan/wlanmodule.h
@@ -1,14 +1,14 @@
#ifndef WLAN_MODULE_H
#define WLAN_MODULE_H
#include "module.h"
-//class WlanInfoImp;
+class WLANImp;
class WLANModule : Module{
signals:
void updateInterface(Interface *i);
public:
WLANModule();
@@ -24,21 +24,20 @@ public:
void possibleNewInterfaces(QMap<QString, QString> &){};
Interface *addNewInterface(const QString &name);
bool remove(Interface* i);
QString getPixmapName(Interface* i);
virtual void receive(const QCString&, const QByteArray&);
private:
QWidget *getInfo(Interface*);
-
+ WLANImp *wlanconfigWiget;
QList<Interface> list;
QString profile;
- // WlanInfoImp *info;
- // Interface *iface;
+
};
extern "C"
{
void* create_plugin() {
return new WLANModule();
}
};