error: '_red' was not declared in this scope (LIBRARY)

Do you see an important difference between these two functions?

int Color::getBlueValue()
{
  return _blue;
}


void setBlueValue(int value)
{
  _blue = value;
}