Add getURL(). This is needed for the new configurable rdf toolbars which

dont know anything about BrowserFrame.  They know about Frame and they
need to cann getURL().  So im putting it here and making it a virtual noop
by default.
This commit is contained in:
ramiro%netscape.com 1998-10-12 10:18:56 +00:00
parent 45a7597595
commit 6f5429efa5
2 changed files with 8 additions and 0 deletions

View File

@ -3730,6 +3730,12 @@ XFE_Frame::commandToString(CommandType cmd,
}
}
int
XFE_Frame::getURL(URL_Struct * /* url */)
{
return -1; // Same as HTMLView
}
void
XFE_Frame::setCursor(XP_Bool busy)
{

View File

@ -170,6 +170,8 @@ public:
virtual Pixel getTopShadowPixel();
virtual Pixel getBottomShadowPixel();
virtual int getURL(URL_Struct *url);
void setCursor(XP_Bool busy);
// Invoked just before we destroy the Frame.