From a43e8e1c4663b6ca7e1f2af46deef012b7f455d3 Mon Sep 17 00:00:00 2001 From: "peterlubczynski%netscape.com" Date: Wed, 15 Aug 2001 03:11:08 +0000 Subject: [PATCH] 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 --- mozilla/include/npapi.h | 6 +++--- mozilla/modules/plugin/base/public/npapi.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mozilla/include/npapi.h b/mozilla/include/npapi.h index 1e09ba7688b..4d596e17511 100644 --- a/mozilla/include/npapi.h +++ b/mozilla/include/npapi.h @@ -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 */ diff --git a/mozilla/modules/plugin/base/public/npapi.h b/mozilla/modules/plugin/base/public/npapi.h index 1e09ba7688b..4d596e17511 100644 --- a/mozilla/modules/plugin/base/public/npapi.h +++ b/mozilla/modules/plugin/base/public/npapi.h @@ -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 */