| 3436 | } |
| 3437 | |
| 3438 | void |
| 3439 | Settings::getRaisedColor(double* r, |
| 3440 | double* g, |
| 3441 | double* b) const |
| 3442 | { |
| 3443 | *r = _raisedColor->getValue(0); |
| 3444 | *g = _raisedColor->getValue(1); |
| 3445 | *b = _raisedColor->getValue(2); |
| 3446 | } |
| 3447 | |
| 3448 | void |
| 3449 | Settings::getSelectionColor(double* r, |
no test coverage detected