Bug 580546 FrameLayerBuilder.cpp failed to compile with Sun Studio 12 r=roc a=bsmedberg

This commit is contained in:
Ginn Chen 2010-07-27 17:20:55 +08:00
Родитель b430cb6792
Коммит e0eb18127b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1075,7 +1075,7 @@ ContainerState::Finish()
if (!layer->GetParent()) {
// This is not currently a child of the container, so just add it
// now.
Layer* prevChild = i == 0 ? nsnull : mNewChildLayers[i - 1];
Layer* prevChild = i == 0 ? nsnull : mNewChildLayers[i - 1].get();
mContainerLayer->InsertAfter(layer, prevChild);
continue;
}