hopefully a fix for the mac build

This commit is contained in:
karnaze%netscape.com 1999-03-12 06:12:03 +00:00
Родитель 2e9f915151
Коммит 8a292ee796
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -204,9 +204,12 @@ nsScrollFrame::CreateScrollingView(nsIPresContext& aPresContext)
// has its scrolling set, use that value
nsIFrame* parentFrame = nsnull;
GetParent(&parentFrame);
nsCOMPtr<nsIAtom> frameType;
parent->GetFrameType(getter_AddRefs(frameType));
//nsCOMPtr<nsIAtom> frameType;
nsIAtom* frameType = nsnull;
//parent->GetFrameType(getter_AddRefs(frameType));
parent->GetFrameType(&frameType);
if (nsLayoutAtoms::viewportFrame == frameType) {
NS_RELEASE(frameType);
nsCOMPtr<nsISupports> container;
rv = aPresContext.GetContainer(getter_AddRefs(container));
if (NS_SUCCEEDED(rv)) {