breaking up gfx & native widgets

git-svn-id: svn://10.0.0.236/trunk@42404 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pierre%netscape.com
1999-08-06 05:11:39 +00:00
parent 5a42080451
commit 6a1d462764
32 changed files with 377 additions and 1621 deletions

View File

@@ -416,19 +416,6 @@ NS_IMETHODIMP nsFileControlFrame::GetProperty(nsIAtom* aName, nsString& aValue)
return NS_OK;
}
PRBool
nsFileControlFrame::HasWidget()
{
PRBool hasWidget = PR_FALSE;
nsIWidget* widget;
mTextFrame->GetWidget(&widget);
if (widget) {
NS_RELEASE(widget);
hasWidget = PR_TRUE;
}
return(hasWidget);
}