summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/popuphelper.cpp
authorharlekin <harlekin>2002-07-21 20:02:13 (UTC)
committer harlekin <harlekin>2002-07-21 20:02:13 (UTC)
commit086b00610edfb25fb25cf54a0f8da8a16b55246a (patch) (side-by-side diff)
treee16de393854040440ebc5ceeb6cbd48b27aff605 /noncore/net/opietooth/manager/popuphelper.cpp
parent8abe7e0604c930cbb46308febeec67d5bf70d255 (diff)
downloadopie-086b00610edfb25fb25cf54a0f8da8a16b55246a.zip
opie-086b00610edfb25fb25cf54a0f8da8a16b55246a.tar.gz
opie-086b00610edfb25fb25cf54a0f8da8a16b55246a.tar.bz2
connection to popups on services
Diffstat (limited to 'noncore/net/opietooth/manager/popuphelper.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/popuphelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/opietooth/manager/popuphelper.cpp b/noncore/net/opietooth/manager/popuphelper.cpp
index ba91e04..4a4daf2 100644
--- a/noncore/net/opietooth/manager/popuphelper.cpp
+++ b/noncore/net/opietooth/manager/popuphelper.cpp
@@ -14,13 +14,13 @@ PopupHelper::~PopupHelper() {
}
void PopupHelper::insert( int id, popupFactory fact ) {
m_map.insert(id, fact );
}
-QPopupMenu* PopupHelper::find( int id, const Services& ser, QListViewItem* item ) {
+QPopupMenu* PopupHelper::find( int id, const Services& ser, BTDeviceItem* item ) {
//qWarning("find");
FactoryMap::Iterator it = m_map.find(id );
if ( it != m_map.end() ) {
//qWarning("found");
popupFactory fact = it.data();
return (*fact)(ser, item);