summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin/pindlg.cc
Unidiff
Diffstat (limited to 'noncore/net/opietooth/blue-pin/pindlg.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/blue-pin/pindlg.cc26
1 files changed, 5 insertions, 21 deletions
diff --git a/noncore/net/opietooth/blue-pin/pindlg.cc b/noncore/net/opietooth/blue-pin/pindlg.cc
index 96be1e5..e40fe33 100644
--- a/noncore/net/opietooth/blue-pin/pindlg.cc
+++ b/noncore/net/opietooth/blue-pin/pindlg.cc
@@ -17,14 +17,2 @@ using namespace OpieTooth;
17 17
18PinDlg::PinDlg( const QString& status,
19 const QString& mac, QWidget* parent,
20 const char* name )
21 : PinDlgBase( parent, name, WType_Modal )
22{
23 m_mac = mac;
24 test( mac );
25 txtStatus->setText(status);
26 if(!m_mac.isEmpty())
27 QPEApplication::showDialog( this );
28}
29
30PinDlg::PinDlg(QWidget* parent, 18PinDlg::PinDlg(QWidget* parent,
@@ -40,3 +28,3 @@ PinDlg::PinDlg(QWidget* parent,
40 printf("ERR\n"); 28 printf("ERR\n");
41 qApp->quit(); 29 ::exit(0);
42 } 30 }
@@ -46,3 +34,3 @@ PinDlg::PinDlg(QWidget* parent,
46 txtStatus->setText(makeTextFromArgs()); 34 txtStatus->setText(makeTextFromArgs());
47 QPEApplication::showDialog( this ) ; 35 QPEApplication::showDialog( this , true) ;
48 } 36 }
@@ -70,8 +58,3 @@ void PinDlg::test( const QString& mac )
70 lnePin->setText(cfg.readEntryCrypt("pin", QString::null ) ); 58 lnePin->setText(cfg.readEntryCrypt("pin", QString::null ) );
71 if ( !lnePin->text().isEmpty() )
72 {
73 //QTimer::singleShot(100, this, SLOT(accept() ) );
74 }
75 } 59 }
76
77} 60}
@@ -102,3 +85,3 @@ QString PinDlg::makeTextFromArgs()
102 else 85 else
103 return QString(); 86 return QString::null;
104} 87}
@@ -108,3 +91,3 @@ QString PinDlg::makeMacFromArgs()
108 if(qApp->argc() < 3) 91 if(qApp->argc() < 3)
109 return QString(); 92 return QString::null;
110 else 93 else
@@ -124,2 +107,3 @@ void PinDlg::accept()
124 qApp->quit(); 107 qApp->quit();
108 ::exit(0);
125} 109}