| 234 | int PlotChannel::style() const { return m_style; } |
| 235 | |
| 236 | void PlotChannel::setStyle(int newStyle) |
| 237 | { |
| 238 | if(m_style == newStyle) |
| 239 | return; |
| 240 | m_style = newStyle; |
| 241 | setStyleInternal(newStyle); |
| 242 | Q_EMIT styleChanged(); |
| 243 | } |
| 244 | |
| 245 | QPen PlotChannel::pen() const { return m_pen; } |
| 246 |
no outgoing calls
no test coverage detected