Closed
Bug 324
Opened 27 years ago
Closed 26 years ago
explicit casts needed in EditorFrame.cpp
Categories
(Core :: DOM: Editor, defect, P3)
Tracking
()
VERIFIED
FIXED
People
(Reporter: berkley, Assigned: mcafee)
Details
Created by Berkley Shands (berkley@cs.wustl.edu) on Wednesday, May 6, 1998 11:47:15 AM PDT
Additional Details :
19980429/mozilla/cmd/xfe/src/EditorFrame.cppcxx: Error:
EditorFrame.cpp, line 523: no instance of constructor
"XFE_PopupMenu::XFE_PopupMenu" matches the argument list
argument types are: (char [6], XFE_Frame *,
Widget, long)
popup = new XFE_PopupMenu("popup",frame, parent,
NULL);
----------------------------------^
cxx: Error: EditorFrame.cpp, line 715: no instance of
constructor "XFE_EditorView::XFE_EditorView" matches the
argument list
argument types are: (XFE_EditorFrame *, Widget,
long, MWContext *)
XFE_EditorView *editorview = new XFE_EditorView(this,
--------------------------------------------------^
2 errors detected in the compilation of "EditorFrame.cpp".
the fixes at line 523
popup = new XFE_PopupMenu("popup",frame, parent, (MenuSpec
*) NULL);
the fixes at line 715
XFE_EditorView *editorview = new XFE_EditorView(this,
getChromeParent(),
(XFE_View *) NULL,
m_context);
berkley
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
fixed
Component: Platform: Rhapsody → Editor
Product: Mozilla → NGLayout
Version: 1998-04-08 → other
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
•