Closed
Bug 312
Opened 26 years ago
Closed 26 years ago
explicit cast needed (ANSI C++)
Categories
(MozillaClassic Graveyard :: XFE, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: berkley, Assigned: mcafee)
Details
Created by Berkley Shands (berkley@cs.wustl.edu) on Wednesday, May 6, 1998 10:31:18 AM PDT
Additional Details :
19980429/mozilla/cmd/xfe/src/BrowserDrop.cpp
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: BrowserDrop.cpp, line 219: no instance of
constructor "XFE_BrowserFrame::XFE_BrowserFrame" matches the
argument list
argument types are: (Widget, XFE_BrowserFrame *,
long)
XFE_BrowserFrame *newFrame=new
XFE_BrowserFrame(XtParent(_browserFrame->getBaseWidget()),
_browserFrame, NULL);
--------------------------------------------------------^
the fix is at line 220
XFE_BrowserFrame *newFrame=new
XFE_BrowserFrame(XtParent(_browserFrame->getBaseWidget()),
_browserFrame, (Chrome *) NULL);
berkley
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
fixed
Moving off Platform:Rhapsody component. That component is being retired. no
other change to this old bug.
You need to log in
before you can comment on or make changes to this bug.
Description
•