cleaned up cursor style handling

This commit is contained in:
peterl@netscape.com
1998-11-18 02:11:54 +00:00
parent b8c981218c
commit baefdbc1e7
20 changed files with 68 additions and 191 deletions

View File

@@ -98,11 +98,6 @@ public:
void GetDefaultLabel(nsString& aLabel);
NS_IMETHOD GetCursorAndContentAt(nsIPresContext& aPresContext,
const nsPoint& aPoint,
nsIFrame** aFrame,
nsIContent** aContent,
PRInt32& aCursor);
protected:
virtual ~nsHTMLButtonControlFrame();
NS_IMETHOD_(nsrefcnt) AddRef(void);
@@ -675,18 +670,6 @@ nsHTMLButtonControlFrame::Reflow(nsIPresContext& aPresContext,
return NS_OK;
}
NS_IMETHODIMP
nsHTMLButtonControlFrame::GetCursorAndContentAt(nsIPresContext& aPresContext,
const nsPoint& aPoint,
nsIFrame** aFrame,
nsIContent** aContent,
PRInt32& aCursor)
{
nsresult result = nsHTMLContainerFrame::GetCursorAndContentAt(aPresContext, aPoint, aFrame, aContent, aCursor);
aCursor = eCursor_standard;
return result;
}
PRIntn
nsHTMLButtonControlFrame::GetSkipSides() const
{