Closed
Bug 203
Opened 27 years ago
Closed 27 years ago
warning fix : ns/lib/layout/laysel.c
Categories
(MozillaClassic Graveyard :: Layout, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: rick, Assigned: nisheeth_mozilla)
Details
Created by Rick Osborne (rick@rixsoft.com) on Monday, April 13, 1998 9:11:38 PM PDT
Additional Details :
(In the continuing quest to eliminate even compiler warnings
... )
Ever more unreferenced vars.
(4785) : warning C4101: ''endOfDocument'' : unreferenced local
variable
(4785) : warning C4101: ''startOfDocument'' : unreferenced
local variable
--- laysel.old.c Wed Apr 08 17:52:27 1998
+++ laysel.c Tue Apr 14 00:13:31 1998
@@ -4715,3 +4715,4 @@ void LO_Hit(MWContext *context, int32
x,
{
- LO_Position endOfDocument;
+ /* Unused */
+ /* LO_Position endOfDocument; */
int32 endY;
@@ -4733,3 +4734,4 @@ void LO_Hit(MWContext *context, int32
x,
{
- LO_Position startOfDocument;
+ /* Unused */
+ /* LO_Position startOfDocument; */
int32 startY;
Updated•27 years ago
|
Assignee: nobody → {}
Component: Layout
Updated•27 years ago
|
Assignee: {} → djw
Assignee | ||
Updated•27 years ago
|
Status: NEW → RESOLVED
Closed: 27 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•27 years ago
|
||
This was fixed a while back. Thanks Rick.
You need to log in
before you can comment on or make changes to this bug.
Description
•