| 3496 | } |
| 3497 | |
| 3498 | void |
| 3499 | Settings::getTextColor(double* r, |
| 3500 | double* g, |
| 3501 | double* b) const |
| 3502 | { |
| 3503 | *r = _textColor->getValue(0); |
| 3504 | *g = _textColor->getValue(1); |
| 3505 | *b = _textColor->getValue(2); |
| 3506 | } |
| 3507 | |
| 3508 | void |
| 3509 | Settings::getAltTextColor(double* r, |
no test coverage detected