Bug 852118 followup. Fix the layout debugger to fix bustage

This commit is contained in:
Boris Zbarsky 2013-03-19 22:20:16 -04:00
Родитель 7614deb458
Коммит 49f1ed4fe8
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -307,7 +307,7 @@ nsLayoutDebuggingTools::SetReflowCounts(bool aShow)
static void DumpAWebShell(nsIDocShellTreeItem* aShellItem, FILE* out, int32_t aIndent)
{
nsXPIDLString name;
nsString name;
nsCOMPtr<nsIDocShellTreeItem> parent;
int32_t i, n;
@ -315,7 +315,7 @@ static void DumpAWebShell(nsIDocShellTreeItem* aShellItem, FILE* out, int32_t aI
fprintf(out, " ");
fprintf(out, "%p '", static_cast<void*>(aShellItem));
aShellItem->GetName(getter_Copies(name));
aShellItem->GetName(name);
aShellItem->GetSameTypeParent(getter_AddRefs(parent));
fputs(NS_LossyConvertUTF16toASCII(name).get(), out);
fprintf(out, "' parent=%p <\n", static_cast<void*>(parent));