mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-03 01:38:46 +02:00
Bug 1900797 - Added missing break in switch statement. r=sstanca
Differential Revision: https://phabricator.services.mozilla.com/D212695
This commit is contained in:
parent
8c631ec275
commit
e39d6a69f0
1 changed files with 1 additions and 0 deletions
|
|
@ -207,6 +207,7 @@ nsresult nsLookAndFeel::NativeGetColor(ColorID aID, ColorScheme aColorScheme,
|
||||||
case ColorID::TargetTextBackground:
|
case ColorID::TargetTextBackground:
|
||||||
case ColorID::TargetTextForeground:
|
case ColorID::TargetTextForeground:
|
||||||
aResult = GetStandinForNativeColor(aID, aColorScheme);
|
aResult = GetStandinForNativeColor(aID, aColorScheme);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
NS_WARNING("Someone asked nsILookAndFeel for a color I don't know about");
|
NS_WARNING("Someone asked nsILookAndFeel for a color I don't know about");
|
||||||
aResult = NS_RGB(0xff, 0xff, 0xff);
|
aResult = NS_RGB(0xff, 0xff, 0xff);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue