summaryrefslogtreecommitdiff
path: root/examples/networksettings
Unidiff
Diffstat (limited to 'examples/networksettings') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/networksettings/config.in2
-rw-r--r--examples/networksettings/example.pro19
-rw-r--r--examples/networksettings/exampleiface.cpp5
-rw-r--r--examples/networksettings/examplemodule.cpp10
4 files changed, 20 insertions, 16 deletions
diff --git a/examples/networksettings/config.in b/examples/networksettings/config.in
index 4bbbb4e..e1a68cc 100644
--- a/examples/networksettings/config.in
+++ b/examples/networksettings/config.in
@@ -3,2 +3,2 @@
3 default "n" if NETWORKSETUP 3 default "n" if NETWORKSETUP
4 depends ( LIBQPE || LIBQPE-X11 ) && NETWORKSETUP && NETWORKSETUP-CORE && INTERFACES && EXAMPLES 4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && NETWORKSETUP && NETWORKSETUP-CORE && INTERFACES && EXAMPLES
diff --git a/examples/networksettings/example.pro b/examples/networksettings/example.pro
index 835dbd0..7bfa1ed 100644
--- a/examples/networksettings/example.pro
+++ b/examples/networksettings/example.pro
@@ -1,14 +1,11 @@
1#TEMPLATE = app
2#
3TEMPLATE = lib 1TEMPLATE = lib
4#CONFIG += qt plugin warn_on 2CONFIG += qt plugin warn_on
5 CONFIG += qt plugin warn_on
6DESTDIR = $(OPIEDIR)/plugins/networksettings 3DESTDIR = $(OPIEDIR)/plugins/networksettings
7 HEADERS = exampleiface.h examplemodule.h 4HEADERS = exampleiface.h examplemodule.h
8 SOURCES = exampleiface.cpp examplemodule.cpp 5SOURCES = exampleiface.cpp examplemodule.cpp
9 INCLUDEPATH+= $(OPIEDIR)/include $(OPIEDIR)/noncore/settings/networksettings $(OPIEDIR)/noncore/settings/networksettings/interfaces 6INCLUDEPATH += $(OPIEDIR)/include $(OPIEDIR)/noncore/settings/networksettings $(OPIEDIR)/noncore/settings/networksettings/interfaces
10 DEPENDPATH+= $(OPIEDIR)/include $(OPIEDIR)/noncore/settings/networksettings $(OPIEDIR)/noncore/settings/networksettings/interfaces 7DEPENDPATH += $(OPIEDIR)/include $(OPIEDIR)/noncore/settings/networksettings $(OPIEDIR)/noncore/settings/networksettings/interfaces
11LIBS += -lqpe -linterfaces 8LIBS += -lqpe -linterfaces -lopiecore2
12 TARGET = example_vpn 9TARGET = example_vpn
13 VERSION = 1.0.0 10VERSION = 1.0.0
14 11
diff --git a/examples/networksettings/exampleiface.cpp b/examples/networksettings/exampleiface.cpp
index 5267a9c..8012bb2 100644
--- a/examples/networksettings/exampleiface.cpp
+++ b/examples/networksettings/exampleiface.cpp
@@ -2,2 +2,5 @@
2 2
3#include <opie2/odebug.h>
4using namespace Opie::Core;
5
3VirtualInterface::VirtualInterface( QObject* parent, 6VirtualInterface::VirtualInterface( QObject* parent,
@@ -19,3 +22,3 @@ bool VirtualInterface::refresh() {
19 QString old = getInterfaceName(); 22 QString old = getInterfaceName();
20 qWarning("Interface name was " + old ); 23 odebug << "Interface name was " << old << oendl;
21 setInterfaceName( "wlan0" ); 24 setInterfaceName( "wlan0" );
diff --git a/examples/networksettings/examplemodule.cpp b/examples/networksettings/examplemodule.cpp
index d7fd718..703e6bd 100644
--- a/examples/networksettings/examplemodule.cpp
+++ b/examples/networksettings/examplemodule.cpp
@@ -1,2 +1,7 @@
1#include <qwidget.h> 1#include "exampleiface.h"
2#include "examplemodule.h"
3
4/* OPIE */
5#include <opie2/odebug.h>
6using namespace Opie::Core;
2 7
@@ -4,4 +9,3 @@
4 9
5#include "exampleiface.h" 10#include <qwidget.h>
6#include "examplemodule.h"
7 11