Bug 47207. Changing printf to PRINTF to use new logging facility. r=valeski,sr=waterson
git-svn-id: svn://10.0.0.236/trunk@81885 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
#ifdef DEBUG
|
||||
#include "nsIFrameDebug.h"
|
||||
#endif
|
||||
|
||||
static NS_DEFINE_IID(kISpaceManagerIID, NS_ISPACEMANAGER_IID);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
@@ -923,8 +924,7 @@ nsSpaceManager::List(FILE* out)
|
||||
|
||||
if (NS_SUCCEEDED(mFrame->QueryInterface(NS_GET_IID(nsIFrameDebug), (void**)&frameDebug))) {
|
||||
frameDebug->GetFrameName(tmp);
|
||||
fprintf(out, " frame=");
|
||||
fputs(tmp, out);
|
||||
fprintf(out, " frame=%s", tmp);
|
||||
fprintf(out, "@%p", mFrame);
|
||||
}
|
||||
}
|
||||
@@ -943,8 +943,7 @@ nsSpaceManager::List(FILE* out)
|
||||
|
||||
if (NS_SUCCEEDED(band->mFrame->QueryInterface(NS_GET_IID(nsIFrameDebug), (void**)&frameDebug))) {
|
||||
frameDebug->GetFrameName(tmp);
|
||||
fprintf(out, " frame=");
|
||||
fputs(tmp, out);
|
||||
fprintf(out, " frame=%s", tmp);
|
||||
fprintf(out, "@%p", band->mFrame);
|
||||
}
|
||||
}
|
||||
@@ -959,8 +958,7 @@ nsSpaceManager::List(FILE* out)
|
||||
|
||||
if (NS_SUCCEEDED(frame->QueryInterface(NS_GET_IID(nsIFrameDebug), (void**)&frameDebug))) {
|
||||
frameDebug->GetFrameName(tmp);
|
||||
fputs(tmp, out);
|
||||
fprintf(out, "@%p ", frame);
|
||||
fprintf(out, "%s@%p ", tmp, frame);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user