Fix debug-only win32 bustage.

This commit is contained in:
waterson%netscape.com 2001-08-30 04:33:27 +00:00
parent 4569fdf8bf
commit bfa9a9cd34
2 changed files with 8 additions and 4 deletions

View File

@ -1452,8 +1452,10 @@ nsXULOutlinerBuilder::OpenSubtreeOf(nsOutlinerRows::Subtree* aSubtree,
static PRInt32 gNest;
nsCAutoString space;
for (PRInt32 i = 0; i < gNest; ++i)
space += " ";
{
for (PRInt32 i = 0; i < gNest; ++i)
space += " ";
}
if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) {
const char* res;

View File

@ -1452,8 +1452,10 @@ nsXULOutlinerBuilder::OpenSubtreeOf(nsOutlinerRows::Subtree* aSubtree,
static PRInt32 gNest;
nsCAutoString space;
for (PRInt32 i = 0; i < gNest; ++i)
space += " ";
{
for (PRInt32 i = 0; i < gNest; ++i)
space += " ";
}
if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) {
const char* res;