summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/pppdialog.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/pppdialog.cpp') (more/less context) (show 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 ) ),