author | harlekin <harlekin> | 2002-06-23 21:19:31 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-23 21:19:31 (UTC) |
commit | 8e6c9f9b93d5c95fe1a40689817e86d478a8c944 (patch) (side-by-side diff) | |
tree | 8b08cd78ba324798d3a83b0da701bb803889bdb5 | |
parent | a4a8c8b51088f47b2c95cbf255e4b63865461c09 (diff) | |
download | opie-8e6c9f9b93d5c95fe1a40689817e86d478a8c944.zip opie-8e6c9f9b93d5c95fe1a40689817e86d478a8c944.tar.gz opie-8e6c9f9b93d5c95fe1a40689817e86d478a8c944.tar.bz2 |
usual fault in connect .-(
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index 910bb8c..af65f14 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp @@ -53,26 +53,26 @@ namespace OpieTooth { connect( PushButton2, SIGNAL( clicked() ), this, SLOT(startScan() ) ); connect( configApplyButton, SIGNAL(clicked() ), this, SLOT(applyConfigChanges() ) ); // not good since lib is async // connect( ListView2, SIGNAL( expanded ( QListViewItem* ) ), // this, SLOT( addServicesToDevice( QListViewItem * ) ) ); connect( ListView2, SIGNAL( clicked( QListViewItem* )), this, SLOT( startServiceActionClicked( QListViewItem* ) ) ); connect( ListView2, SIGNAL( rightButtonClicked( QListViewItem *, const QPoint &, int ) ), this, SLOT(startServiceActionHold( BTListItem *, const QPoint &, int) ) ); connect( localDevice , SIGNAL( foundServices( const QString& , Services::ValueList ) ), this, SLOT( addServicesToDevice( const QString& , Services::ValueList ) ) ); - connect( localDevice, SIGNAL( available( const QString& device, bool connected ) ), - this, SLOT( deviceActive( const QString& mac, bool connected ) ) ); + connect( localDevice, SIGNAL( available( const QString&, bool ) ), + this, SLOT( deviceActive( const QString& , bool ) ) ); //Load all icons needed offPix = Resource::loadPixmap( "editdelete" ); onPix = Resource::loadPixmap( "installed" ); QPalette pal = this->palette(); QColor col = pal.color( QPalette::Active, QColorGroup::Background ); pal.setColor( QPalette::Active, QColorGroup::Button, col ); pal.setColor( QPalette::Inactive, QColorGroup::Button, col ); pal.setColor( QPalette::Normal, QColorGroup::Button, col ); pal.setColor( QPalette::Disabled, QColorGroup::Button, col ); |