summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/stdpopups.cpp
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/stdpopups.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/stdpopups.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/stdpopups.cpp b/noncore/net/opietooth/manager/stdpopups.cpp
index f58d3a6..17a7002 100644
--- a/noncore/net/opietooth/manager/stdpopups.cpp
+++ b/noncore/net/opietooth/manager/stdpopups.cpp
@@ -1,12 +1,13 @@
1 1
2#include "rfcpopup.h" 2#include "rfcpopup.h"
3#include "obexpopup.h" 3#include "obexpopup.h"
4#include "obexftpopup.h" 4#include "obexftpopup.h"
5#include "panpopup.h" 5#include "panpopup.h"
6#include "dunpopup.h" 6#include "dunpopup.h"
7#include "hidpopup.h"
7 8
8#include "stdpopups.h" 9#include "stdpopups.h"
9 10
10extern "C" { 11extern "C" {
11 12
12 QPopupMenu* newRfcComPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) { 13 QPopupMenu* newRfcComPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) {
@@ -22,8 +23,12 @@ extern "C" {
22 return new OpieTooth::PanPopup( item ); 23 return new OpieTooth::PanPopup( item );
23 } 24 }
24 25
25 QPopupMenu* newDunPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) { 26 QPopupMenu* newDunPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) {
26 return new OpieTooth::DunPopup(service, item); 27 return new OpieTooth::DunPopup(service, item);
27 } 28 }
29
30 QPopupMenu* newHidPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) {
31 return new OpieTooth::HidPopup(service, item);
32 }
28} 33}
29 34