styleContext is passed onto PaintBorder()/PaintArrow()

git-svn-id: svn://10.0.0.236/trunk@18358 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
harishd%netscape.com
1999-01-22 22:31:15 +00:00
parent 3dea579ecf
commit 8f1b6c4b34
2 changed files with 6 additions and 6 deletions

View File

@@ -507,7 +507,7 @@ nsComboboxControlFrame::PaintComboboxControl(nsIPresContext& aPresContext,
aDirtyRect, rect, *myColor, *mySpacing, 0, 0);
nsCSSRendering::PaintBorder(aPresContext, aRenderingContext, this,
aDirtyRect, rect, *mySpacing, 0);
aDirtyRect, rect, *mySpacing, mStyleContext, 0);
nsHTMLContainerFrame::Paint(aPresContext, aRenderingContext, aDirtyRect, aWhichLayer);
@@ -561,7 +561,7 @@ nsComboboxControlFrame::PaintComboboxControl(nsIPresContext& aPresContext,
aRenderingContext.DrawString(mTextStr, x, y, 0);
nsCSSRendering::PaintBorder(aPresContext, aRenderingContext, this,
aDirtyRect, inside, *blkSpacing, 0);
aDirtyRect, inside, *blkSpacing, blkStyle, 0);
aRenderingContext.PopState(clipEmpty);
@@ -582,7 +582,7 @@ nsComboboxControlFrame::PaintComboboxControl(nsIPresContext& aPresContext,
nsRect srect(0,0,0,0);//mRect.width-scrollbarWidth-onePixel, onePixel, scrollbarWidth, mRect.height-(onePixel*2));
srect = mButtonRect;
nsFormControlHelper::PaintArrow(nsFormControlHelper::eArrowDirection_Down, aRenderingContext,aPresContext,
aDirtyRect, srect, onePixel, *arrowColor, *arrowSpacing, this, mRect);
aDirtyRect, srect, onePixel, mArrowStyle, *arrowSpacing, this, mRect);
//}