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
@@ -15,18 +15,6 @@
15 15
16using namespace OpieTooth; 16using 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,
31 const char* name, 19 const char* name,
32 Qt::WFlags f ) 20 Qt::WFlags f )
@@ -38,13 +26,13 @@ PinDlg::PinDlg(QWidget* parent,
38 { 26 {
39 // can't obtain MAC 27 // can't obtain MAC
40 printf("ERR\n"); 28 printf("ERR\n");
41 qApp->quit(); 29 ::exit(0);
42 } 30 }
43 else 31 else
44 { 32 {
45 test( m_mac ); 33 test( m_mac );
46 txtStatus->setText(makeTextFromArgs()); 34 txtStatus->setText(makeTextFromArgs());
47 QPEApplication::showDialog( this ) ; 35 QPEApplication::showDialog( this , true) ;
48 } 36 }
49} 37}
50 38
@@ -68,12 +56,7 @@ void PinDlg::test( const QString& mac )
68 Config cfg("bluepin"); 56 Config cfg("bluepin");
69 cfg.setGroup(mac); 57 cfg.setGroup(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}
78 61
79QString PinDlg::makeTextFromArgs() 62QString PinDlg::makeTextFromArgs()
@@ -100,13 +83,13 @@ QString PinDlg::makeTextFromArgs()
100 return status ; 83 return status ;
101 } 84 }
102 else 85 else
103 return QString(); 86 return QString::null;
104} 87}
105 88
106QString PinDlg::makeMacFromArgs() 89QString PinDlg::makeMacFromArgs()
107{ 90{
108 if(qApp->argc() < 3) 91 if(qApp->argc() < 3)
109 return QString(); 92 return QString::null;
110 else 93 else
111 return qApp->argv()[2] ; 94 return qApp->argv()[2] ;
112} 95}
@@ -122,4 +105,5 @@ void PinDlg::accept()
122 printf("PIN:%s\n", lnePin->text().latin1()); 105 printf("PIN:%s\n", lnePin->text().latin1());
123 QDialog::accept(); 106 QDialog::accept();
124 qApp->quit(); 107 qApp->quit();
108 ::exit(0);
125} 109}