Remove refcounting version of nsIPresShell::GetPresContext. Bug 253889, r+sr=roc.

This commit is contained in:
bryner%brianryner.com 2005-08-20 07:14:06 +00:00
Родитель c9ae7e0a54
Коммит 020d944e4b
3 изменённых файлов: 3 добавлений и 9 удалений

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

@ -155,10 +155,8 @@ static PRInt32 GetContentState(nsIFrame* aFrame)
if (!shell)
return 0;
nsCOMPtr<nsPresContext> context;
shell->GetPresContext(getter_AddRefs(context));
PRInt32 flags = 0;
context->EventStateManager()->GetContentState(aFrame->GetContent(), flags);
shell->GetPresContext()->EventStateManager()->GetContentState(aFrame->GetContent(), flags);
return flags;
}

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

@ -155,10 +155,8 @@ static PRInt32 GetContentState(nsIFrame* aFrame)
if (!shell)
return 0;
nsCOMPtr<nsPresContext> context;
shell->GetPresContext(getter_AddRefs(context));
PRInt32 flags = 0;
context->EventStateManager()->GetContentState(aFrame->GetContent(), flags);
shell->GetPresContext()->EventStateManager()->GetContentState(aFrame->GetContent(), flags);
return flags;
}

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

@ -105,10 +105,8 @@ nsNativeTheme::GetContentState(nsIFrame* aFrame, PRUint8 aWidgetType)
if (!shell)
return 0;
nsCOMPtr<nsPresContext> context;
shell->GetPresContext(getter_AddRefs(context));
PRInt32 flags = 0;
context->EventStateManager()->GetContentState(aFrame->GetContent(), flags);
shell->GetPresContext()->EventStateManager()->GetContentState(aFrame->GetContent(), flags);
if (isXULCheckboxRadio && aWidgetType == NS_THEME_RADIO) {
if (IsFocused(aFrame))