-rw-r--r-- | noncore/unsupported/gsmtool/gsmtool.cpp | 18 | ||||
-rw-r--r-- | noncore/unsupported/gsmtool/gsmtool.h | 1 |
2 files changed, 7 insertions, 12 deletions
diff --git a/noncore/unsupported/gsmtool/gsmtool.cpp b/noncore/unsupported/gsmtool/gsmtool.cpp index 14ef368..38c8c59 100644 --- a/noncore/unsupported/gsmtool/gsmtool.cpp +++ b/noncore/unsupported/gsmtool/gsmtool.cpp | |||
@@ -22,7 +22,6 @@ GSMTool::GSMTool( QWidget* parent, const char* name, WFlags fl ) | |||
22 | { | 22 | { |
23 | devicelocked = 0; | 23 | devicelocked = 0; |
24 | me = NULL; | 24 | me = NULL; |
25 | port = NULL; | ||
26 | setConnected(FALSE); | 25 | setConnected(FALSE); |
27 | /* FIXME: Persistent settings for device/baudrate */ | 26 | /* FIXME: Persistent settings for device/baudrate */ |
28 | connect(ConnectButton, SIGNAL(clicked()), this, SLOT(doConnectButton())); | 27 | connect(ConnectButton, SIGNAL(clicked()), this, SLOT(doConnectButton())); |
@@ -138,6 +137,8 @@ void GSMTool::doScanButton() | |||
138 | */ | 137 | */ |
139 | void GSMTool::doConnectButton() | 138 | void GSMTool::doConnectButton() |
140 | { | 139 | { |
140 | gsmlib::Port *port; | ||
141 | |||
141 | speed_t rate; | 142 | speed_t rate; |
142 | devicename = strdup(DeviceName->currentText().local8Bit().data()); | 143 | devicename = strdup(DeviceName->currentText().local8Bit().data()); |
143 | rate = baudrates[BaudRate->currentItem()]; | 144 | rate = baudrates[BaudRate->currentItem()]; |
@@ -150,16 +151,12 @@ void GSMTool::doConnectButton() | |||
150 | 151 | ||
151 | setConnected(FALSE); | 152 | setConnected(FALSE); |
152 | if (me) { | 153 | if (me) { |
153 | // delete me; | ||
154 | me = NULL; | 154 | me = NULL; |
155 | } | 155 | } |
156 | if (port) { | ||
157 | // delete port; | ||
158 | port = NULL; | ||
159 | } | ||
160 | 156 | ||
161 | if (lockDevice()) { | 157 | if (lockDevice()) { |
162 | qDebug("lockDevice() failed\n"); | 158 | qDebug("lockDevice() failed\n"); |
159 | MfrText->setText("Lock port failed"); | ||
163 | }; | 160 | }; |
164 | 161 | ||
165 | qDebug("Device name is %s\n", devicename); | 162 | qDebug("Device name is %s\n", devicename); |
@@ -168,6 +165,7 @@ void GSMTool::doConnectButton() | |||
168 | port = new UnixSerialPort(devicename, rate, DEFAULT_INIT_STRING, 0); | 165 | port = new UnixSerialPort(devicename, rate, DEFAULT_INIT_STRING, 0); |
169 | } catch (GsmException) { | 166 | } catch (GsmException) { |
170 | qDebug("port failed"); | 167 | qDebug("port failed"); |
168 | MfrText->setText("Open port failed"); | ||
171 | return; | 169 | return; |
172 | } | 170 | } |
173 | MfrText->setText("Initialising..."); | 171 | MfrText->setText("Initialising..."); |
@@ -176,8 +174,8 @@ void GSMTool::doConnectButton() | |||
176 | me = new MeTa(port); | 174 | me = new MeTa(port); |
177 | } catch (GsmException) { | 175 | } catch (GsmException) { |
178 | qDebug("meta failed"); | 176 | qDebug("meta failed"); |
179 | delete port; | 177 | MfrText->setText("Initialise GSM unit failed"); |
180 | port = NULL; | 178 | me = NULL; |
181 | unlockDevice(); | 179 | unlockDevice(); |
182 | return; | 180 | return; |
183 | } | 181 | } |
@@ -192,10 +190,8 @@ void GSMTool::doConnectButton() | |||
192 | ifo = me->getMEInfo(); | 190 | ifo = me->getMEInfo(); |
193 | } catch (GsmException) { | 191 | } catch (GsmException) { |
194 | qDebug("getMEInfo failed"); | 192 | qDebug("getMEInfo failed"); |
195 | delete me; | 193 | MfrText->setText("Query GSM unit failed"); |
196 | me = NULL; | 194 | me = NULL; |
197 | delete port; | ||
198 | port = NULL; | ||
199 | unlockDevice(); | 195 | unlockDevice(); |
200 | return; | 196 | return; |
201 | } | 197 | } |
diff --git a/noncore/unsupported/gsmtool/gsmtool.h b/noncore/unsupported/gsmtool/gsmtool.h index cb19f54..1625cb1 100644 --- a/noncore/unsupported/gsmtool/gsmtool.h +++ b/noncore/unsupported/gsmtool/gsmtool.h | |||
@@ -27,7 +27,6 @@ private: | |||
27 | int timerid; | 27 | int timerid; |
28 | 28 | ||
29 | gsmlib::MeTa *me; | 29 | gsmlib::MeTa *me; |
30 | gsmlib::Port *port; | ||
31 | 30 | ||
32 | char *devicename; | 31 | char *devicename; |
33 | speed_t baudrate; | 32 | speed_t baudrate; |