Changed ifdef so we can use ToString for non-debug purposes. r=akkana

This commit is contained in:
cmanske%netscape.com 1999-09-29 21:52:10 +00:00
Родитель d20641b38c
Коммит 1cbdd57614
2 изменённых файлов: 8 добавлений и 8 удалений

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

@ -1487,7 +1487,7 @@ nsresult nsRange::ToString(nsString& aReturn)
return NS_OK;
}
#ifdef DEBUG
#ifdef DEBUG_range
printf("Range dump: -----------------------\n");
#endif /* DEBUG */
@ -1498,7 +1498,7 @@ nsresult nsRange::ToString(nsString& aReturn)
if (textNode)
{
#ifdef DEBUG
#ifdef DEBUG_range
// If debug, dump it:
nsCOMPtr<nsIContent> cN (do_QueryInterface(mStartParent));
if (cN) cN->List(stdout);
@ -1528,7 +1528,7 @@ nsresult nsRange::ToString(nsString& aReturn)
iter->CurrentNode(getter_AddRefs(cN));
while (cN && (NS_COMFALSE == iter->IsDone()))
{
#ifdef DEBUG
#ifdef DEBUG_range
// If debug, dump it:
cN->List(stdout);
#endif /* DEBUG */
@ -1562,7 +1562,7 @@ nsresult nsRange::ToString(nsString& aReturn)
iter->CurrentNode(getter_AddRefs(cN));
}
#ifdef DEBUG
#ifdef DEBUG_range
printf("End Range dump: -----------------------\n");
#endif /* DEBUG */
return NS_OK;

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

@ -1487,7 +1487,7 @@ nsresult nsRange::ToString(nsString& aReturn)
return NS_OK;
}
#ifdef DEBUG
#ifdef DEBUG_range
printf("Range dump: -----------------------\n");
#endif /* DEBUG */
@ -1498,7 +1498,7 @@ nsresult nsRange::ToString(nsString& aReturn)
if (textNode)
{
#ifdef DEBUG
#ifdef DEBUG_range
// If debug, dump it:
nsCOMPtr<nsIContent> cN (do_QueryInterface(mStartParent));
if (cN) cN->List(stdout);
@ -1528,7 +1528,7 @@ nsresult nsRange::ToString(nsString& aReturn)
iter->CurrentNode(getter_AddRefs(cN));
while (cN && (NS_COMFALSE == iter->IsDone()))
{
#ifdef DEBUG
#ifdef DEBUG_range
// If debug, dump it:
cN->List(stdout);
#endif /* DEBUG */
@ -1562,7 +1562,7 @@ nsresult nsRange::ToString(nsString& aReturn)
iter->CurrentNode(getter_AddRefs(cN));
}
#ifdef DEBUG
#ifdef DEBUG_range
printf("End Range dump: -----------------------\n");
#endif /* DEBUG */
return NS_OK;