summaryrefslogtreecommitdiff
path: root/noncore
authorharlekin <harlekin>2002-07-21 21:07:28 (UTC)
committer harlekin <harlekin>2002-07-21 21:07:28 (UTC)
commit756a2f9a16d6f25902d2ba6171ea6c59fca5b951 (patch) (side-by-side diff)
treee481b93cb286bbbbd82d280f693fec420b34454b /noncore
parent2fb3b8fdf9cb4e660e217ae563a1a49557864ca9 (diff)
downloadopie-756a2f9a16d6f25902d2ba6171ea6c59fca5b951.zip
opie-756a2f9a16d6f25902d2ba6171ea6c59fca5b951.tar.gz
opie-756a2f9a16d6f25902d2ba6171ea6c59fca5b951.tar.bz2
show a search icon while searching if an device is in range or not
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp
index f400ce6..433bd3a 100644
--- a/noncore/net/opietooth/manager/bluebase.cpp
+++ b/noncore/net/opietooth/manager/bluebase.cpp
@@ -243,48 +243,49 @@ void BlueBase::applyConfigChanges() {
m_useEncryption = cryptCheckBox->isChecked();
m_enableAuthentification = authCheckBox->isChecked();
m_enablePagescan = pagescanCheckBox->isChecked();
m_enableInquiryscan = inquiryscanCheckBox->isChecked();
writeConfig();
QMessageBox::information( this, tr("Test") , tr("Changes were applied.") );
}
/**
* Add fresh found devices from scan dialog to the listing
*
*/
void BlueBase::addSearchedDevices( const QValueList<RemoteDevice> &newDevices ) {
BTDeviceItem * deviceItem;
QValueList<RemoteDevice>::ConstIterator it;
for( it = newDevices.begin(); it != newDevices.end() ; ++it ) {
if (find( (*it) )) // is already inserted
continue;
deviceItem = new BTDeviceItem( ListView2 , (*it) );
+ deviceItem->setPixmap( 1, m_findPix );
deviceItem->setExpandable ( true );
// look if device is avail. atm, async
deviceActive( (*it) );
// ggf auch hier?
addServicesToDevice( deviceItem );
}
}
/**
* Action that is toggled on entrys on click
*/
void BlueBase::startServiceActionClicked( QListViewItem */*item*/ ) {
}
/**
* Action that are toggled on hold (mostly QPopups i guess)
*/
void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & point, int /*column*/ ) {
if (!item )
return;