Closed
Bug 334
Opened 26 years ago
Closed 26 years ago
ANSI disallows enum casts - make explicit in EditorView.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 Thursday, May 7, 1998 11:15:42 AM PDT
Additional Details :
diff mozilla/cmd/xfe/src/EditorView.cpp
/hog/sources/mozilla/19980429/mozilla/cmd/xfe/src/EditorView.cpp
786c786
< ED_FontSize size =
(ED_FontSize)(int)set_font_size_params[i].data;
---
> ED_FontSize size =
(ED_FontSize)set_font_size_params[i].data;
811c811
< ED_FontSize match =
(ED_FontSize)(int)set_font_size_params[i].data;
---
> ED_FontSize match =
(ED_FontSize)set_font_size_params[i].data;
this is for cxx V6.0-20
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
•