Make x & y be signed for NPWindow struct bug 93500 r=av sr=attinasi

git-svn-id: svn://10.0.0.236/trunk@101068 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
peterlubczynski%netscape.com
2001-08-15 03:11:08 +00:00
parent 3e553e5d47
commit a43e8e1c46
2 changed files with 6 additions and 6 deletions

View File

@@ -22,7 +22,7 @@
/*
* npapi.h $Revision: 3.12 $
* npapi.h $Revision: 3.13 $
* Netscape client plug-in API spec
*/
@@ -330,8 +330,8 @@ typedef struct _NPWindow
void* window; /* Platform specific window handle */
/* OS/2: x - Position of bottom left corner */
/* OS/2: y - relative to visible netscape window */
uint32 x; /* Position of top left corner relative */
uint32 y; /* to a netscape page. */
int32 x; /* Position of top left corner relative */
int32 y; /* to a netscape page. */
uint32 width; /* Maximum window size */
uint32 height;
NPRect clipRect; /* Clipping rectangle in port coordinates */