summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.cpp7
-rw-r--r--noncore/net/opietooth/manager/btlistitem.cpp22
-rw-r--r--noncore/net/opietooth/manager/btlistitem.h16
-rw-r--r--noncore/net/opietooth/manager/hciconfwrapper.cpp4
-rw-r--r--noncore/net/opietooth/manager/hciconfwrapper.h4
-rw-r--r--noncore/net/opietooth/manager/main.cpp4
-rw-r--r--noncore/net/opietooth/manager/scandialog.cpp10
-rw-r--r--noncore/net/opietooth/manager/scandialog.h2
8 files changed, 31 insertions, 38 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp
index ff6981b..8ddc161 100644
--- a/noncore/net/opietooth/manager/bluebase.cpp
+++ b/noncore/net/opietooth/manager/bluebase.cpp
@@ -434,5 +434,6 @@ void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & poin
434 void BlueBase::startScan() { 434 void BlueBase::startScan() {
435 ScanDialog *scan = new ScanDialog( this, "", true); 435 ScanDialog *scan = new ScanDialog( this, "ScanDialog",
436 QObject::connect( scan, SIGNAL( selectedDevices( QList<RemoteDevice>& ) ), 436 true, WDestructiveClose );
437 this, SLOT( addSearchedDevices( QList<RemoteDevice>& ) ) ); 437 QObject::connect( scan, SIGNAL( selectedDevices( QValueList<RemoteDevice>& ) ),
438 this, SLOT( addSearchedDevices( QValueList<RemoteDevice>& ) ) );
438 439
diff --git a/noncore/net/opietooth/manager/btlistitem.cpp b/noncore/net/opietooth/manager/btlistitem.cpp
index ce5b141..82e7c00 100644
--- a/noncore/net/opietooth/manager/btlistitem.cpp
+++ b/noncore/net/opietooth/manager/btlistitem.cpp
@@ -7,5 +7,2 @@ namespace OpieTooth {
7 BTListItem::BTListItem( QListView * parent ) : QListViewItem( parent ) { 7 BTListItem::BTListItem( QListView * parent ) : QListViewItem( parent ) {
8 m_name = "";
9 m_mac ="";
10 m_type ="";
11 } 8 }
@@ -13,5 +10,2 @@ namespace OpieTooth {
13 BTListItem::BTListItem( QListViewItem * parent ) : QListViewItem( parent ) { 10 BTListItem::BTListItem( QListViewItem * parent ) : QListViewItem( parent ) {
14 m_name = "";
15 m_mac ="";
16 m_type ="";
17 } 11 }
@@ -20,3 +14,3 @@ namespace OpieTooth {
20 // name, and then mac and then servicetype 14 // name, and then mac and then servicetype
21 BTListItem::BTListItem( QListView * parent, QString name , QString mac, QString type ) 15 BTListItem::BTListItem( QListView * parent, const QString &name , const QString& mac, const QString& type )
22 : QListViewItem( parent, name ){ 16 : QListViewItem( parent, name ){
@@ -29,3 +23,3 @@ namespace OpieTooth {
29 23
30 BTListItem::BTListItem( QListViewItem * parent , QString name, QString mac, QString type ) 24 BTListItem::BTListItem( QListViewItem * parent , const QString& name, const QString& mac, const QString& type )
31 : QListViewItem( parent, name ){ 25 : QListViewItem( parent, name ){
@@ -38,3 +32,3 @@ namespace OpieTooth {
38 32
39 void BTListItem::setMac( QString mac ) { 33 void BTListItem::setMac( const QString& mac ) {
40 m_mac = mac; 34 m_mac = mac;
@@ -42,3 +36,3 @@ namespace OpieTooth {
42 36
43 QString BTListItem::mac() { 37 QString BTListItem::mac() const {
44 return m_mac; 38 return m_mac;
@@ -46,3 +40,3 @@ namespace OpieTooth {
46 40
47 void BTListItem::setName( QString name ) { 41 void BTListItem::setName( const QString& name ) {
48 m_name = name; 42 m_name = name;
@@ -50,3 +44,3 @@ namespace OpieTooth {
50 44
51 QString BTListItem::name() { 45 QString BTListItem::name() const {
52 return m_name; 46 return m_name;
@@ -54,3 +48,3 @@ namespace OpieTooth {
54 48
55 void BTListItem::setType( QString type ) { 49 void BTListItem::setType( const QString& type ) {
56 m_type = type; 50 m_type = type;
@@ -58,3 +52,3 @@ namespace OpieTooth {
58 52
59 QString BTListItem::type() { 53 QString BTListItem::type() const {
60 return m_type; 54 return m_type;
diff --git a/noncore/net/opietooth/manager/btlistitem.h b/noncore/net/opietooth/manager/btlistitem.h
index 8963caa..d7ce03b 100644
--- a/noncore/net/opietooth/manager/btlistitem.h
+++ b/noncore/net/opietooth/manager/btlistitem.h
@@ -14,12 +14,12 @@ namespace OpieTooth {
14 // name, and then mac and then servicetype 14 // name, and then mac and then servicetype
15 BTListItem( QListView * , QString, QString, QString ); 15 BTListItem( QListView * , const QString&, const QString&, const QString& );
16 BTListItem( QListViewItem * parent , QString, QString , QString ); 16 BTListItem( QListViewItem * parent , const QString&, const QString& , const QString& );
17 ~BTListItem(); 17 ~BTListItem();
18 18
19 void setMac( QString ); 19 void setMac( const QString& );
20 QString mac(); 20 QString mac()const;
21 void setName( QString ); 21 void setName( const QString& );
22 QString name(); 22 QString name()const;
23 void setType( QString ); 23 void setType( const QString& );
24 QString type(); 24 QString type()const;
25 private: 25 private:
diff --git a/noncore/net/opietooth/manager/hciconfwrapper.cpp b/noncore/net/opietooth/manager/hciconfwrapper.cpp
index 0b90e87..5f74fee 100644
--- a/noncore/net/opietooth/manager/hciconfwrapper.cpp
+++ b/noncore/net/opietooth/manager/hciconfwrapper.cpp
@@ -18,3 +18,3 @@ namespace OpieTooth {
18 18
19 void HciConfWrapper::setPinHelper( QString app ) { 19 void HciConfWrapper::setPinHelper( const QString& app ) {
20 setValue( "pin_helper" , app ); 20 setValue( "pin_helper" , app );
@@ -22,3 +22,3 @@ namespace OpieTooth {
22 22
23 void HciConfWrapper::setName( QString name ) { 23 void HciConfWrapper::setName( const QString &name ) {
24 qDebug ("NAME : " + name); 24 qDebug ("NAME : " + name);
diff --git a/noncore/net/opietooth/manager/hciconfwrapper.h b/noncore/net/opietooth/manager/hciconfwrapper.h
index 10738c0..de8c9a8 100644
--- a/noncore/net/opietooth/manager/hciconfwrapper.h
+++ b/noncore/net/opietooth/manager/hciconfwrapper.h
@@ -13,4 +13,4 @@ namespace OpieTooth {
13 13
14 void setPinHelper( QString app ); 14 void setPinHelper( const QString& app );
15 void setName( QString name ); 15 void setName( const QString& name );
16 void setIscan( bool enable ); 16 void setIscan( bool enable );
diff --git a/noncore/net/opietooth/manager/main.cpp b/noncore/net/opietooth/manager/main.cpp
index d60ef1c..a86e36d 100644
--- a/noncore/net/opietooth/manager/main.cpp
+++ b/noncore/net/opietooth/manager/main.cpp
@@ -29,6 +29,6 @@ int main( int argc, char ** argv ) {
29 29
30 OpieTooth::BlueBase *t = new OpieTooth::BlueBase(); 30 OpieTooth::BlueBase t;
31 31
32 // t.setCaption( OpieTooth::BlueBase::tr("Bluetooth Manager") ); 32 // t.setCaption( OpieTooth::BlueBase::tr("Bluetooth Manager") );
33 a.showMainWidget(t); 33 a.showMainWidget(&t);
34 34
diff --git a/noncore/net/opietooth/manager/scandialog.cpp b/noncore/net/opietooth/manager/scandialog.cpp
index 0e6e93b..3d6c928 100644
--- a/noncore/net/opietooth/manager/scandialog.cpp
+++ b/noncore/net/opietooth/manager/scandialog.cpp
@@ -160,4 +160,3 @@ namespace OpieTooth {
160 160
161 QList<RemoteDevice> *deviceList = new QList<RemoteDevice>; 161 QValueList<RemoteDevice> deviceList;
162 deviceList->setAutoDelete(true);
163 162
@@ -166,4 +165,4 @@ namespace OpieTooth {
166 if ( ((QCheckListItem*)it.current())->isOn() ) { 165 if ( ((QCheckListItem*)it.current())->isOn() ) {
167 RemoteDevice * device = new RemoteDevice( it.current()->text(1), it.current()->text(0)); 166 RemoteDevice device( it.current()->text(1), it.current()->text(0));
168 deviceList->append( device ); 167 deviceList.append( device );
169 } 168 }
@@ -171,4 +170,3 @@ namespace OpieTooth {
171 qDebug("vor emit"); 170 qDebug("vor emit");
172 emit selectedDevices( *deviceList ); 171 emit selectedDevices( deviceList );
173 delete deviceList;
174 } 172 }
diff --git a/noncore/net/opietooth/manager/scandialog.h b/noncore/net/opietooth/manager/scandialog.h
index 7c84ce2..cc890f3 100644
--- a/noncore/net/opietooth/manager/scandialog.h
+++ b/noncore/net/opietooth/manager/scandialog.h
@@ -72,3 +72,3 @@ public slots:
72 signals: 72 signals:
73 void selectedDevices(QList<RemoteDevice>&); 73 void selectedDevices(QValueList<RemoteDevice>&);
74 }; 74 };