| 189 | |
| 190 | |
| 191 | void FxLine::paintEvent( QPaintEvent * ) |
| 192 | { |
| 193 | bool sendToThis = Engine::fxMixer()->channelSendModel( m_mv->currentFxLine()->m_channelIndex, m_channelIndex ) != NULL; |
| 194 | bool receiveFromThis = Engine::fxMixer()->channelSendModel( m_channelIndex, m_mv->currentFxLine()->m_channelIndex ) != NULL; |
| 195 | QPainter painter; |
| 196 | painter.begin( this ); |
| 197 | drawFxLine( &painter, this, m_mv->currentFxLine() == this, sendToThis, receiveFromThis ); |
| 198 | painter.end(); |
| 199 | } |
| 200 | |
| 201 | |
| 202 |
nothing calls this directly
no test coverage detected