Closed
Bug 311
Opened 27 years ago
Closed 26 years ago
explict type cast needed
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:27:14 AM PDT
Additional Details :
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: BookmarkView.cpp, line 1842: no instance of
constructor "XFE_PopupMenu::XFE_PopupMenu" matches the
argument list
argument types are: (char [6], XFE_Frame *,
Widget, long)
m_popup = new XFE_PopupMenu("popup",
------------------------------^
1 error detected in the compilation of "BookmarkView.cpp".
the fix at line 1845 is
m_popup = new XFE_PopupMenu("popup",
(XFE_Frame*)m_toplevel, // XXXXXXX
widget,
(MenuSpec *) NULL);
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
|
||
File's not in cvs anymore.
Comment 3•9 years ago
|
||
Commit pushed to master at https://github.com/mozilla/activity-streams
https://github.com/mozilla/activity-streams/commit/aaa74431cc3bbacbca7764024a357659254be95d
Merge pull request #530 from mozilla/Bug311-perfstats
Closes #311 - A performance logger that collects statistics
You need to log in
before you can comment on or make changes to this bug.
Description
•