Fix for xlib build bustage.

This commit is contained in:
ramiro%netscape.com 1999-10-04 04:49:45 +00:00
parent 5dce94ef3e
commit 91c4f34276
2 changed files with 8 additions and 0 deletions

View File

@ -325,6 +325,13 @@ NS_IMETHODIMP nsWidget::SetFocus(void)
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetName(const char * aName)
{
mName = aName;
return NS_OK;
}
Window
nsWidget::GetFocusWindow(void)
{

View File

@ -80,6 +80,7 @@ public:
NS_IMETHOD Enable(PRBool bState);
NS_IMETHOD SetFocus(void);
NS_IMETHOD SetName(const char * aName);
NS_IMETHOD SetBackgroundColor(const nscolor &aColor);
virtual nsIFontMetrics* GetFont(void);
NS_IMETHOD SetFont(const nsFont &aFont);