summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/pppdialog.cpp
authorharlekin <harlekin>2002-07-13 14:02:59 (UTC)
committer harlekin <harlekin>2002-07-13 14:02:59 (UTC)
commit9a97566ac38b51e27707342556171af63f6a75b4 (patch) (side-by-side diff)
treeaf9b6a746090f6ca243af5c250e688f07c7ea708 /noncore/net/opietooth/manager/pppdialog.cpp
parentc86efeae9e7f7f63dca633f630b571019a5c71b6 (diff)
downloadopie-9a97566ac38b51e27707342556171af63f6a75b4.zip
opie-9a97566ac38b51e27707342556171af63f6a75b4.tar.gz
opie-9a97566ac38b51e27707342556171af63f6a75b4.tar.bz2
obex dialog added and fixes to ppp dialog
Diffstat (limited to 'noncore/net/opietooth/manager/pppdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/pppdialog.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/noncore/net/opietooth/manager/pppdialog.cpp b/noncore/net/opietooth/manager/pppdialog.cpp
index 472da73..4d926a5 100644
--- a/noncore/net/opietooth/manager/pppdialog.cpp
+++ b/noncore/net/opietooth/manager/pppdialog.cpp
@@ -9,3 +9,3 @@
-PPPDialog::PPPDialog( QWidget* parent, const char* name, bool modal, WFlags fl )
+PPPDialog::PPPDialog( QWidget* parent, const char* name, bool modal, WFlags fl, const QString& device )
: QDialog( parent, name, modal, fl ) {
@@ -16,2 +16,4 @@ PPPDialog::PPPDialog( QWidget* parent, const char* name, bool modal, WFlags fl
+ m_device = device;
+
layout = new QVBoxLayout( this );
@@ -19,3 +21,3 @@ PPPDialog::PPPDialog( QWidget* parent, const char* name, bool modal, WFlags fl
QLabel* info = new QLabel( this );
- info->setText( "Enter an ppp script name:" );
+ info->setText( tr("Enter an ppp script name:") );
@@ -47,6 +49,5 @@ void PPPDialog::connectToDevice() {
// vom popupmenu beziehen
- QString devName = "/dev/ttyU0";
QString connectScript = "/etc/ppp/peers/" + cmdLine->text();
OProcess* pppDial = new OProcess();
- *pppDial << "pppd" << devName << "call" << connectScript;
+ *pppDial << "pppd" << m_device << "call" << connectScript;
connect( pppDial, SIGNAL(receivedStdout(OProcess*, char*, int ) ),