Closed
Bug 335
Opened 26 years ago
Closed 26 years ago
ANSI disallows enum casts - make explicit in HistoryView.cpp
Categories
(Core :: DOM: UI Events & Focus Handling, 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:17:21 AM PDT
Additional Details :
diff mozilla/cmd/xfe/src/HistoryView.cpp
/hog/sources/mozilla/19980429/mozilla/cmd/xfe/src/HistoryView.cpp
274c274
< resort((enHistSortCol) (int)calldata, False);
---
> resort((enHistSortCol)calldata, False);
279c279
< resort((enHistSortCol) (int)calldata, True);
---
> resort((enHistSortCol)calldata, True);
427c427
< return m_sortBy == (enHistSortCol) (int)calldata;
---
> return m_sortBy == (enHistSortCol)calldata;
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
fixed
Component: Platform: Rhapsody → Event Handling
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.
Updated•6 years ago
|
Component: Event Handling → User events and focus handling
You need to log in
before you can comment on or make changes to this bug.
Description
•