summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/obexpopup.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/obexpopup.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/obexpopup.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/noncore/net/opietooth/manager/obexpopup.h b/noncore/net/opietooth/manager/obexpopup.h
index ba95e27..25af0d9 100644
--- a/noncore/net/opietooth/manager/obexpopup.h
+++ b/noncore/net/opietooth/manager/obexpopup.h
@@ -3,19 +3,21 @@
3 3
4#include <qpopupmenu.h> 4#include <qpopupmenu.h>
5#include <qaction.h> 5#include <qaction.h>
6#include <services.h>
7#include "btdeviceitem.h"
6 8
7namespace OpieTooth { 9namespace OpieTooth {
8 10
9 class ObexPopup : public QPopupMenu { 11 class ObexPopup : public QPopupMenu {
10 Q_OBJECT 12 Q_OBJECT
11 public: 13 public:
12 ObexPopup(); 14 ObexPopup(const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item);
13 ~ObexPopup(); 15 ~ObexPopup();
14 16 protected:
15
16 private:
17 QAction* m_push; 17 QAction* m_push;
18 private slots: 18 OpieTooth::BTDeviceItem *m_item;
19 Services m_service;
20 protected slots:
19 void slotPush(); 21 void slotPush();
20 }; 22 };
21}; 23};