[OS/2] Bug 451346: implement nativehyperlinktext to get readable URLs in the location bar autocomplete, r=wuno@lsvw

Simply use blue color as OS/2 doesn't have a system property to query this kind of color.
This commit is contained in:
Peter Weilbacher 2008-08-22 01:09:28 +03:00
parent a39ac3faf1
commit f8ba9c53f2

View File

@ -246,6 +246,9 @@ nsresult nsLookAndFeel::NativeGetColor(const nsColorID aID, nscolor &aColor)
idx = SYSCLR_MENUHILITE;
}
break;
case eColor__moz_nativehyperlinktext:
aColor = NS_RGB( 0, 0, 255);
return res;
default:
idx = SYSCLR_WINDOW;
break;