implement SetTitle to fix bustage

This commit is contained in:
alecf%netscape.com 1999-09-28 03:22:11 +00:00
parent 99db328245
commit 7590c1db6b
2 changed files with 7 additions and 0 deletions

View File

@ -1824,3 +1824,9 @@ NS_IMETHODIMP nsWindow::CaptureRollupEvents(nsIRollupListener * aListener, PRBoo
return NS_OK;
}
NS_IMETHODIMP nsWindow::SetTitle(const nsString& title)
{
NS_ASSERTION(0, "Would some Mac person please implement me? Thanks.");
return NS_OK;
}

View File

@ -155,6 +155,7 @@ public:
NS_IMETHOD SetCursor(nsCursor aCursor);
NS_IMETHOD CaptureRollupEvents(nsIRollupListener * aListener, PRBool aDoCapture);
NS_IMETHOD SetTitle(const nsString& title);
// Mac specific methods
void nsRectToMacRect(const nsRect& aRect, Rect& aMacRect) const;