Added SetEnabled Method stub.

This commit is contained in:
Jerry.Kirk%Nexwarecorp.com 1999-09-01 11:46:25 +00:00
parent 80c60a6e0c
commit 694b676c4b
2 changed files with 12 additions and 0 deletions

View File

@ -298,6 +298,17 @@ NS_METHOD nsMenu::SetAccessKey(const nsString &aText)
return NS_OK;
}
//-------------------------------------------------------------------------
/**
* Set enabled state
*
*/
NS_METHOD nsMenu::SetEnabled(PRBool aIsEnabled)
{
return NS_OK;
}
//-------------------------------------------------------------------------
NS_METHOD nsMenu::AddItem(nsISupports* aItem)

View File

@ -72,6 +72,7 @@ public:
NS_IMETHOD AddMenuListener(nsIMenuListener * aMenuListener);
NS_IMETHOD RemoveMenuListener(nsIMenuListener * aMenuListener);
NS_IMETHOD SetEnabled(PRBool aIsEnabled);
//
NS_IMETHOD AddMenuItem(nsIMenuItem * aMenuItem);