| 116 | } |
| 117 | |
| 118 | void CParameterSerialPort::SetStopBits(const QSerialPort::StopBits &newStopBits) |
| 119 | { |
| 120 | if(m_StopBits == newStopBits) |
| 121 | return; |
| 122 | m_StopBits = newStopBits; |
| 123 | SetModified(true); |
| 124 | } |
| 125 | |
| 126 | QSerialPort::FlowControl CParameterSerialPort::GetFlowControl() const |
| 127 | { |