Closed
Bug 313
Opened 27 years ago
Closed 26 years ago
explicit typecast needed in BrowserFrame.cpp
Categories
(MozillaClassic Graveyard :: XFE, defect, P3)
Tracking
(Not tracked)
VERIFIED
WONTFIX
People
(Reporter: berkley, Assigned: mcafee)
Details
Created by Berkley Shands (berkley@cs.wustl.edu) on Wednesday, May 6, 1998 10:37:47 AM PDT
Additional Details :
cxx: Warning: Command.h, line 192: overloaded virtual
function "XFE_AbstractCommand::doCommand" is only partially
overridden in class "XFE_FrameCommand"
class XFE_FrameCommand : public XFE_Command
------^
cxx: Warning: Command.h, line 237: overloaded virtual
function "XFE_AbstractCommand::doCommand" is only partially
overridden in class "XFE_ObjectIsCommand"
class XFE_ObjectIsCommand : public XFE_ViewCommand
------^
cxx: Warning: Command.h, line 242: "void
XFE_ObjectIsCommand::doCommand(XFE_View *, XFE_CommandInfo
*)" does not match "XFE_ViewCommand::doCommand" -- virtual
function override intended?
void doCommand(XFE_View* view,
XFE_CommandInfo* info);
----------------------^
cxx: Error: BrowserFrame.cpp, line 232: no instance of
constructor "XFE_HTMLView::XFE_HTMLView" matches the
argument list
argument types are: (XFE_BrowserFrame *, Widget,
long, MWContext *)
htmlview = new XFE_HTMLView(this, getChromeParent(), NULL,
m_context);
the fix is
htmlview = new XFE_HTMLView(this, getChromeParent(),
(XFE_View *) NULL, m_context);
berkley
------------------------------^
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → WONTFIX
Assignee | ||
Comment 1•26 years ago
|
||
code's too different.
You need to log in
before you can comment on or make changes to this bug.
Description
•