summaryrefslogtreecommitdiff
authorkorovkin <korovkin>2006-04-09 17:14:19 (UTC)
committer korovkin <korovkin>2006-04-09 17:14:19 (UTC)
commitfb5daa581aee96edca0206f2f68d25c370692adb (patch) (unidiff)
tree04ddf2ff040a195d5ad6ae310a988457c7cc52a0
parent6c1c44237a16dc8fed89905ae729e36eb9711c07 (diff)
downloadopie-fb5daa581aee96edca0206f2f68d25c370692adb.zip
opie-fb5daa581aee96edca0206f2f68d25c370692adb.tar.gz
opie-fb5daa581aee96edca0206f2f68d25c370692adb.tar.bz2
Added empty string in the beginning of the list of ppp scripts.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/pppdialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/pppdialog.cpp b/noncore/net/opietooth/manager/pppdialog.cpp
index 1df22a1..4ab3738 100644
--- a/noncore/net/opietooth/manager/pppdialog.cpp
+++ b/noncore/net/opietooth/manager/pppdialog.cpp
@@ -70,12 +70,13 @@ PPPDialog::PPPDialog( const QString& device, int port, QWidget* parent,
70 layout->addWidget(serPort); 70 layout->addWidget(serPort);
71 layout->addWidget(outPut); 71 layout->addWidget(outPut);
72 layout->addWidget(connectButton); 72 layout->addWidget(connectButton);
73 73
74 connect( connectButton, SIGNAL( clicked() ), this, SLOT( connectToDevice() ) ); 74 connect( connectButton, SIGNAL( clicked() ), this, SLOT( connectToDevice() ) );
75 //And fill cmdLine with ppp script filenames 75 //And fill cmdLine with ppp script filenames
76 cmdLine->insertItem("");
76 cmdLine->insertStringList(d.entryList()); 77 cmdLine->insertStringList(d.entryList());
77} 78}
78 79
79PPPDialog::~PPPDialog() { 80PPPDialog::~PPPDialog() {
80} 81}
81 82