summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin/pindlg.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/blue-pin/pindlg.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/blue-pin/pindlg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/net/opietooth/blue-pin/pindlg.h b/noncore/net/opietooth/blue-pin/pindlg.h
index 1817aa8..8557010 100644
--- a/noncore/net/opietooth/blue-pin/pindlg.h
+++ b/noncore/net/opietooth/blue-pin/pindlg.h
@@ -7,28 +7,29 @@ namespace OpieTooth {
7 7
8 class PinDlg : public PinDlgBase { 8 class PinDlg : public PinDlgBase {
9 9
10 Q_OBJECT 10 Q_OBJECT
11 11
12 public: 12 public:
13 PinDlg(QWidget* parent = 0,const char* name = 0, Qt::WFlags f = 0); 13 PinDlg(QWidget* parent = 0,const char* name = 0, Qt::WFlags f = 0);
14 14
15 ~PinDlg(); 15 ~PinDlg();
16 void setMac( const QString& ); 16 void setMac( const QString& );
17 QString pin() const; 17 QString pin() const;
18 18
19 static QString appName() { return QString::fromLatin1("bluepin") ; } 19 static QString appName() { return QString::fromLatin1("bluepin") ; }
20 20
21 private: 21 private:
22 void test( const QString& mac ); 22 void test( const QString& mac );
23 23
24 QString makeTextFromArgs(); 24 QString makeTextFromArgs();
25 QString makeMacFromArgs(); 25 QString makeMacFromArgs();
26 26
27 QString m_mac; 27 QString m_mac;
28 28
29 protected slots: 29 protected slots:
30 void accept(); 30 void accept();
31 void reject();
31 void addnum(); 32 void addnum();
32 33 void delnum();
33 }; 34 };
34}; 35};