summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profileeditorplugins.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/profileeditorplugins.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profileeditorplugins.cpp21
1 files changed, 12 insertions, 9 deletions
diff --git a/noncore/apps/opie-console/profileeditorplugins.cpp b/noncore/apps/opie-console/profileeditorplugins.cpp
index c11c854..937516c 100644
--- a/noncore/apps/opie-console/profileeditorplugins.cpp
+++ b/noncore/apps/opie-console/profileeditorplugins.cpp
@@ -185,33 +185,36 @@ QWidget *ProfileEditorPlugin::terminal_widget()
185 connect(group_size, SIGNAL(clicked(int)), SLOT(slotTermFont(int))); 185 connect(group_size, SIGNAL(clicked(int)), SLOT(slotTermFont(int)));
186 186
187 connect(option_echo, SIGNAL(toggled(bool)), SLOT(slotTermEcho(bool))); 187 connect(option_echo, SIGNAL(toggled(bool)), SLOT(slotTermEcho(bool)));
188 connect(option_wrap, SIGNAL(toggled(bool)), SLOT(slotTermWrap(bool))); 188 connect(option_wrap, SIGNAL(toggled(bool)), SLOT(slotTermWrap(bool)));
189 connect(conv_inbound, SIGNAL(toggled(bool)), SLOT(slotTermInbound(bool))); 189 connect(conv_inbound, SIGNAL(toggled(bool)), SLOT(slotTermInbound(bool)));
190 connect(conv_outbound, SIGNAL(toggled(bool)), SLOT(slotTermOutbound(bool))); 190 connect(conv_outbound, SIGNAL(toggled(bool)), SLOT(slotTermOutbound(bool)));
191 191
192 return root; 192 return root;
193} 193}
194 194
195void ProfileEditorPlugin::slotConnFlow(int id) 195void ProfileEditorPlugin::slotConnFlow(int id)
196{ 196{
197 switch(id) 197 switch(id)
198 { 198 {
199 case id_flow_hw: 199 case id_flow_hw:
200 m_profile->writeEntry("Flow", IOSerial::FlowHW); 200 m_profile->writeEntry("Flow", IOSerial::FlowHW);
201 break; 201 break;
202 case id_flow_sw: 202 case id_flow_sw:
203 m_profile->writeEntry("Flow", IOSerial::FlowSW); 203 m_profile->writeEntry("Flow", IOSerial::FlowSW);
204 break; 204 break;
205 } 205 case id_flow_sw:
206 m_profile->writeEntry("None", IOSerial::None);
207 break;
208 }
206} 209}
207 210
208void ProfileEditorPlugin::slotConnParity(int id) 211void ProfileEditorPlugin::slotConnParity(int id)
209{ 212{
210 switch(id) 213 switch(id)
211 { 214 {
212 case id_parity_odd: 215 case id_parity_odd:
213 m_profile->writeEntry("Parity", IOSerial::ParityEven); 216 m_profile->writeEntry("Parity", IOSerial::ParityEven);
214 break; 217 break;
215 case id_parity_even: 218 case id_parity_even:
216 m_profile->writeEntry("Parity", IOSerial::ParityOdd); 219 m_profile->writeEntry("Parity", IOSerial::ParityOdd);
217 break; 220 break;