| 122 | return this->isValid() ? defaultPalette[this->getID()].rgbRed : 0; |
| 123 | } |
| 124 | int Color::green() const |
| 125 | { |
| 126 | return this->isValid() ? defaultPalette[this->getID()].rgbGreen : 0; |
| 127 | } |
| 128 | int Color::blue() const |
| 129 | { |
| 130 | return this->isValid() ? defaultPalette[this->getID()].rgbBlue : 0; |
no test coverage detected