summaryrefslogtreecommitdiff
path: root/noncore
Side-by-side diff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/io_modem.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/noncore/apps/opie-console/io_modem.cpp b/noncore/apps/opie-console/io_modem.cpp
index e1f9ff1..f246d81 100644
--- a/noncore/apps/opie-console/io_modem.cpp
+++ b/noncore/apps/opie-console/io_modem.cpp
@@ -18,6 +18,7 @@ void IOModem::close() {
// Hangup, discarding result
- Dialer d(m_profile, rawIO());
+ int fd = rawIO();
+ Dialer d(m_profile, fd);
d.setHangupOnly();
d.exec();
- closeRawIO();
+ closeRawIO(fd);
@@ -30,6 +31,7 @@ bool IOModem::open() {
- Dialer d(m_profile, rawIO());
+ int fd = rawIO();
+ Dialer d(m_profile, fd);
int result = d.exec();
- closeRawIO();
+ closeRawIO(fd);
if(result == QDialog::Accepted)