Hack into compileable shape.

This commit is contained in:
duncan%be.com 1999-10-04 08:52:17 +00:00
parent 249f8499bb
commit 62996c9b41
2 changed files with 6 additions and 1 deletions

View File

@ -79,7 +79,7 @@ nsWindow::nsWindow() : nsBaseWidget()
mHitMenu = nsnull;
mHitSubMenus = new nsVoidArray();
mVScrollbar = nsnull;
// mVScrollbar = nsnull;
#ifdef DRAG_DROP
mDragDrop = nsnull;
@ -720,6 +720,10 @@ NS_METHOD nsWindow::Show(PRBool bState)
return NS_OK;
}
NS_METHOD nsWindow::CaptureRollupEvents(nsIRollupListener * aListener, PRBool aDoCapture, PRBool aConsumeRollupEvent)
{
}
//-------------------------------------------------------------------------
//
// Return PR_TRUE if the whether the component is visible, PR_FALSE otherwise

View File

@ -91,6 +91,7 @@ public:
NS_IMETHOD Destroy();
virtual nsIWidget* GetParent(void);
NS_IMETHOD Show(PRBool bState);
NS_IMETHOD CaptureRollupEvents(nsIRollupListener *aListener, PRBool aDoCapture, PRBool aConsumeRollupEvent);
NS_IMETHOD IsVisible(PRBool & aState);
NS_IMETHOD Move(PRInt32 aX, PRInt32 aY);