| 325 | } |
| 326 | |
| 327 | void ObjectLabel::setSourcePointColor( const Color &color, ViewportId id ) |
| 328 | { |
| 329 | if ( sourcePointColor_.get( id ) == color ) |
| 330 | return; |
| 331 | |
| 332 | sourcePointColor_.set( color, id ); |
| 333 | needRedraw_ = true; |
| 334 | } |
| 335 | |
| 336 | void ObjectLabel::setLeaderLineColor( const Color &color, ViewportId id ) |
| 337 | { |
no test coverage detected