summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin/pindlg.cc
Side-by-side diff
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;
-PinDlg::PinDlg( const QString& status,
- const QString& mac, QWidget* parent,
- const char* name )
- : PinDlgBase( parent, name, WType_Modal )
-{
- m_mac = mac;
- test( mac );
- txtStatus->setText(status);
- if(!m_mac.isEmpty())
- QPEApplication::showDialog( this );
-}
-
PinDlg::PinDlg(QWidget* parent,
@@ -40,3 +28,3 @@ PinDlg::PinDlg(QWidget* parent,
printf("ERR\n");
- qApp->quit();
+ ::exit(0);
}
@@ -46,3 +34,3 @@ PinDlg::PinDlg(QWidget* parent,
txtStatus->setText(makeTextFromArgs());
- QPEApplication::showDialog( this ) ;
+ QPEApplication::showDialog( this , true) ;
}
@@ -70,8 +58,3 @@ void PinDlg::test( const QString& mac )
lnePin->setText(cfg.readEntryCrypt("pin", QString::null ) );
- if ( !lnePin->text().isEmpty() )
- {
- //QTimer::singleShot(100, this, SLOT(accept() ) );
- }
}
-
}
@@ -102,3 +85,3 @@ QString PinDlg::makeTextFromArgs()
else
- return QString();
+ return QString::null;
}
@@ -108,3 +91,3 @@ QString PinDlg::makeMacFromArgs()
if(qApp->argc() < 3)
- return QString();
+ return QString::null;
else
@@ -124,2 +107,3 @@ void PinDlg::accept()
qApp->quit();
+ ::exit(0);
}