-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 8 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.h | 5 |
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 | |||
@@ -18,4 +18,5 @@ | |||
18 | 18 | ||
19 | #include "bluebase.h" | 19 | #include "bluebase.h" |
20 | #include "scandialog.h" | ||
20 | 21 | ||
21 | #include <qframe.h> | 22 | #include <qframe.h> |
@@ -39,4 +40,6 @@ BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl ) | |||
39 | 40 | ||
40 | 41 | ||
42 | QObject::connect( (QObject*) PushButton2, SIGNAL( clicked() ), this, SLOT(startScan())); | ||
43 | |||
41 | QPalette pal = this->palette(); | 44 | QPalette pal = this->palette(); |
42 | QColor col = pal.color(QPalette::Active, QColorGroup::Background); | 45 | QColor col = pal.color(QPalette::Active, QColorGroup::Background); |
@@ -49,4 +52,9 @@ BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl ) | |||
49 | 52 | ||
50 | 53 | ||
54 | void BlueBase::startScan() { | ||
55 | Form3 *scan = new Form3( this, "", true); | ||
56 | scan->exec(); | ||
57 | } | ||
58 | |||
51 | BlueBase::~BlueBase(){ | 59 | BlueBase::~BlueBase(){ |
52 | } | 60 | } |
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 | |||
@@ -28,4 +28,9 @@ public: | |||
28 | protected: | 28 | protected: |
29 | 29 | ||
30 | |||
31 | private slots: | ||
32 | void startScan(); | ||
33 | |||
34 | |||
30 | }; | 35 | }; |
31 | 36 | ||