Closed
Bug 321
Opened 26 years ago
Closed 26 years ago
explicit cast needed in NavCenterView.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 11:22:45 AM PDT
Additional Details :
mozilla/19980429/mozilla/cmd/xfe/src/NavCenterView.cpp
cxx: Error: NavCenterView.cpp, line 91: no instance of
constructor "XFE_RDFView::XFE_RDFView" matches the argument
list
argument types are: (XFE_NavCenterView *,
Widget, long, MWContext *, HT_View)
m_rdfview = new XFE_RDFView(this, rdf_parent,
------------------------------^
the fix is
m_rdfview = new XFE_RDFView(this, rdf_parent,
(XFE_View *) NULL, context,
m_htview);
berkley
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Component: Platform: Rhapsody → XFE
Resolution: --- → WONTFIX
Assignee | ||
Comment 1•26 years ago
|
||
code has changed too much.
You need to log in
before you can comment on or make changes to this bug.
Description
•