summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/mainwindowimp.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/mainwindowimp.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/mainwindowimp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/mainwindowimp.h b/noncore/settings/networksettings/mainwindowimp.h
index c045fe6..a553f75 100644
--- a/noncore/settings/networksettings/mainwindowimp.h
+++ b/noncore/settings/networksettings/mainwindowimp.h
@@ -8,8 +8,9 @@
8class Module; 8class Module;
9class Interface; 9class Interface;
10class QLibrary; 10class QLibrary;
11class KProcess; 11class KProcess;
12class QCopChannel;
12#ifdef QWS 13#ifdef QWS
13class QLibrary; 14class QLibrary;
14#else 15#else
15class KLibrary; 16class KLibrary;
@@ -24,8 +25,10 @@ class MainWindowImp : public MainWindow {
24public: 25public:
25 MainWindowImp(QWidget *parent=0, const char *name=0); 26 MainWindowImp(QWidget *parent=0, const char *name=0);
26 ~MainWindowImp(); 27 ~MainWindowImp();
27 28
29 QCopChannel *channel;
30
28private slots: 31private slots:
29 void getAllInterfaces(); 32 void getAllInterfaces();
30 33
31 void addClicked(); 34 void addClicked();
@@ -39,9 +42,12 @@ private slots:
39 42
40 void updateInterface(Interface *i); 43 void updateInterface(Interface *i);
41 void newProfileChanged(const QString& newText); 44 void newProfileChanged(const QString& newText);
42 45
46 void receive (const QCString &, const QByteArray &);
47
43private: 48private:
49 void makeChannel();
44 void loadModules(const QString &path); 50 void loadModules(const QString &path);
45 51
46 Module* loadPlugin(const QString &pluginFileName, 52 Module* loadPlugin(const QString &pluginFileName,
47 const QString &resolveString = "create_plugin"); 53 const QString &resolveString = "create_plugin");