summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/stdpopups.cpp
authorkorovkin <korovkin>2006-03-19 14:59:21 (UTC)
committer korovkin <korovkin>2006-03-19 14:59:21 (UTC)
commit39fedaa847ed64b2c0113a75d0f1de29da5876db (patch) (side-by-side diff)
tree442fc009975e72a22cb9773b88599ea388af195b /noncore/net/opietooth/manager/stdpopups.cpp
parent3de693f244170cb9424d841aef6a6d7175766fa3 (diff)
downloadopie-39fedaa847ed64b2c0113a75d0f1de29da5876db.zip
opie-39fedaa847ed64b2c0113a75d0f1de29da5876db.tar.gz
opie-39fedaa847ed64b2c0113a75d0f1de29da5876db.tar.bz2
Added device browsing and files downloading using OBEX File transfer
protocol.
Diffstat (limited to 'noncore/net/opietooth/manager/stdpopups.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/stdpopups.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/noncore/net/opietooth/manager/stdpopups.cpp b/noncore/net/opietooth/manager/stdpopups.cpp
index e1f8396..68f19c0 100644
--- a/noncore/net/opietooth/manager/stdpopups.cpp
+++ b/noncore/net/opietooth/manager/stdpopups.cpp
@@ -1,6 +1,7 @@
#include "rfcpopup.h"
#include "obexpopup.h"
+#include "obexftpopup.h"
#include "panpopup.h"
#include "dunpopup.h"
@@ -9,17 +10,19 @@
extern "C" {
QPopupMenu* newRfcComPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) {
- return new OpieTooth::RfcCommPopup(/* servive,*/ item ); // fix spellin RfComm vs. RfcComm and paramaters
- //return 0l;
+ return new OpieTooth::RfcCommPopup(service, item); // fix spellin RfComm vs. RfcComm and paramaters
}
- QPopupMenu* newObexPushPopup( const OpieTooth::Services&, OpieTooth::BTDeviceItem* ) {
- return new OpieTooth::ObexPopup();
+ QPopupMenu* newObexPushPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item) {
+ return new OpieTooth::ObexPopup(service, item);
}
- QPopupMenu* newPanPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) {
+ QPopupMenu* newObexFtpPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item) {
+ return new OpieTooth::ObexFtpPopup(service, item);
+ }
+ QPopupMenu* newPanPopup( const OpieTooth::Services&, OpieTooth::BTDeviceItem* item ) {
return new OpieTooth::PanPopup( item );
}
- QPopupMenu* newDunPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) {
+ QPopupMenu* newDunPopup( const OpieTooth::Services&, OpieTooth::BTDeviceItem* item ) {
return new OpieTooth::DunPopup( item );
}
}