Bug 547267 followup - rename nsPresContext::GetLanguage to GetLanguageFromCharset for clarity. r=dbaron

This commit is contained in:
Jonathan Kew 2010-02-26 06:20:35 -08:00
Родитель 4166f45471
Коммит f5fd23a05d
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -1932,7 +1932,7 @@ nsCanvasRenderingContext2D::SetFont(const nsAString& font)
return NS_ERROR_FAILURE;
nsIDocument* document = presShell->GetDocument();
nsIAtom *language = presShell->GetPresContext()->GetLanguage();
nsIAtom *language = presShell->GetPresContext()->GetLanguageFromCharset();
nsCOMArray<nsIStyleRule> rules;

Просмотреть файл

@ -538,7 +538,7 @@ public:
nsIDeviceContext* DeviceContext() { return mDeviceContext; }
nsIEventStateManager* EventStateManager() { return mEventManager; }
nsIAtom* GetLanguage() { return mLanguage; }
nsIAtom* GetLanguageFromCharset() { return mLanguage; }
float TextZoom() { return mTextZoom; }
void SetTextZoom(float aZoom) {

Просмотреть файл

@ -1960,9 +1960,9 @@ nsStyleVisibility::nsStyleVisibility(nsPresContext* aPresContext)
language.FindChar(PRUnichar(',')) == kNotFound) {
mLanguage = do_GetAtom(language);
} else {
// we didn't find a (usable) Content-Language,
// so fall back to the presContext's language
mLanguage = aPresContext->GetLanguage();
// we didn't find a (usable) Content-Language, so we fall back
// to whatever the presContext guessed from the charset
mLanguage = aPresContext->GetLanguageFromCharset();
}
mVisible = NS_STYLE_VISIBILITY_VISIBLE;