Closed
Bug 323
Opened 26 years ago
Closed 26 years ago
explicit cast needed in URLBar.cpp
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 11:42:14 AM PDT
Additional Details :
cxx: Error: URLBar.cpp, line 809: 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",(XFE_Frame*)m_toplevel, widget, NULL);
----------------------------------^
the fix at line 811 is
m_popup = new
XFE_PopupMenu("popup",(XFE_Frame*)m_toplevel,
widget, (MenuSpec *) NULL);
berkley
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Component: Platform: Rhapsody → XFE
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
fixed
You need to log in
before you can comment on or make changes to this bug.
Description
•