summaryrefslogtreecommitdiff
path: root/noncore/net
authorharlekin <harlekin>2002-06-02 22:05:55 (UTC)
committer harlekin <harlekin>2002-06-02 22:05:55 (UTC)
commitd068b0a50826a189d11e2f2037ee21a4c0850567 (patch) (unidiff)
treed07771652ae649d0452d58211fa588589fb76360 /noncore/net
parent6898878a1ef6d5551d7dde9363f238e57b5c9671 (diff)
downloadopie-d068b0a50826a189d11e2f2037ee21a4c0850567.zip
opie-d068b0a50826a189d11e2f2037ee21a4c0850567.tar.gz
opie-d068b0a50826a189d11e2f2037ee21a4c0850567.tar.bz2
update
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.cpp8
-rw-r--r--noncore/net/opietooth/manager/bluebase.h5
2 files changed, 13 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp
index f4153a0..c17271f 100644
--- a/noncore/net/opietooth/manager/bluebase.cpp
+++ b/noncore/net/opietooth/manager/bluebase.cpp
@@ -19,2 +19,3 @@
19#include "bluebase.h" 19#include "bluebase.h"
20#include "scandialog.h"
20 21
@@ -40,2 +41,4 @@ BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl )
40 41
42 QObject::connect( (QObject*) PushButton2, SIGNAL( clicked() ), this, SLOT(startScan()));
43
41 QPalette pal = this->palette(); 44 QPalette pal = this->palette();
@@ -50,2 +53,7 @@ BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl )
50 53
54void BlueBase::startScan() {
55 Form3 *scan = new Form3( this, "", true);
56 scan->exec();
57}
58
51BlueBase::~BlueBase(){ 59BlueBase::~BlueBase(){
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h
index 4d53e99..29c45be 100644
--- a/noncore/net/opietooth/manager/bluebase.h
+++ b/noncore/net/opietooth/manager/bluebase.h
@@ -29,2 +29,7 @@ protected:
29 29
30
31 private slots:
32 void startScan();
33
34
30}; 35};