Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
This commit is contained in:
@@ -87,7 +87,7 @@ nsHTMLButtonControlFrame::~nsHTMLButtonControlFrame()
|
||||
void
|
||||
nsHTMLButtonControlFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
||||
{
|
||||
nsFormControlFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), PR_FALSE);
|
||||
nsFormControlFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), false);
|
||||
DestroyAbsoluteFrames(aDestructRoot);
|
||||
nsHTMLContainerFrame::DestroyFrom(aDestructRoot);
|
||||
}
|
||||
@@ -240,7 +240,7 @@ nsHTMLButtonControlFrame::Reflow(nsPresContext* aPresContext,
|
||||
"Should have real computed width by now");
|
||||
|
||||
if (mState & NS_FRAME_FIRST_REFLOW) {
|
||||
nsFormControlFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), PR_TRUE);
|
||||
nsFormControlFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), true);
|
||||
}
|
||||
|
||||
// Reflow the child
|
||||
@@ -372,7 +372,7 @@ nsresult nsHTMLButtonControlFrame::SetFormProperty(nsIAtom* aName, const nsAStri
|
||||
{
|
||||
if (nsGkAtoms::value == aName) {
|
||||
return mContent->SetAttr(kNameSpaceID_None, nsGkAtoms::value,
|
||||
aValue, PR_TRUE);
|
||||
aValue, true);
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user