summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/dundialog.cpp
authorkorovkin <korovkin>2006-04-04 18:53:07 (UTC)
committer korovkin <korovkin>2006-04-04 18:53:07 (UTC)
commit31ea6e9f697d72a31ce319f7f42254fe90e48a36 (patch) (side-by-side diff)
tree694ad373b6ac80ebdf93137029b0b6c5d335d3f6 /noncore/net/opietooth/manager/dundialog.cpp
parent76276b77e99897ae264aa5b171191521edada420 (diff)
downloadopie-31ea6e9f697d72a31ce319f7f42254fe90e48a36.zip
opie-31ea6e9f697d72a31ce319f7f42254fe90e48a36.tar.gz
opie-31ea6e9f697d72a31ce319f7f42254fe90e48a36.tar.bz2
Added persist mode for dund.
Diffstat (limited to 'noncore/net/opietooth/manager/dundialog.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/dundialog.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/dundialog.cpp b/noncore/net/opietooth/manager/dundialog.cpp
index 7aac271..c6d8619 100644
--- a/noncore/net/opietooth/manager/dundialog.cpp
+++ b/noncore/net/opietooth/manager/dundialog.cpp
@@ -55,7 +55,11 @@ DunDialog::DunDialog( const QString& device, int port, QWidget* parent,
doEncryption->setText( tr( "encrypt" ) );
+ persist = new QCheckBox(this, "persist");
+ persist->setText( tr( "persist" ) );
+
layout->addWidget(info);
layout->addWidget(cmdLine);
layout->addWidget(doEncryption);
+ layout->addWidget(persist);
layout->addWidget(outPut);
layout->addWidget(connectButton);
@@ -69,4 +73,6 @@ DunDialog::~DunDialog() {
void DunDialog::connectToDevice() {
bool doEnc = doEncryption->isChecked();
+ bool doPersist = persist->isChecked();
+
if (cmdLine->text() == "")
return;
@@ -85,4 +91,6 @@ void DunDialog::connectToDevice() {
if (doEnc)
*m_dunConnect << tr("--encrypt");
+ if (doPersist)
+ *m_dunConnect << tr("--persist");
*m_dunConnect << tr("call")
<< cmdLine->text();