diff options
Diffstat (limited to 'Xprint/pcl/PclWindow.c')
-rw-r--r-- | Xprint/pcl/PclWindow.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Xprint/pcl/PclWindow.c b/Xprint/pcl/PclWindow.c index 7c830b897..b58bd43a1 100644 --- a/Xprint/pcl/PclWindow.c +++ b/Xprint/pcl/PclWindow.c @@ -44,10 +44,12 @@ not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from said copyright holders. */ +/* $XFree86: xc/programs/Xserver/Xprint/pcl/PclWindow.c,v 1.10 2001/12/19 21:55:58 dawes Exp $ */ #include <stdio.h> #include <string.h> +#include <sys/types.h> #include <sys/wait.h> #include "mistruct.h" @@ -57,8 +59,7 @@ copyright holders. #include "Pcl.h" -extern WindowPtr *WindowTable; - +#if 0 /* * The following list of strings defines the properties which will be * placed on the screen's root window if the property was defined in @@ -75,7 +76,7 @@ static /* const */ char *propStrings[] = { DT_PRINT_PAGE_COMMAND, (char *)NULL }; - +#endif /* * PclCreateWindow - watch for the creation of the root window. @@ -207,7 +208,6 @@ PclPaintWindow( RegionPtr pRegion, int what) { - int status; WindowPtr pRoot; #define FUNCTION 0 @@ -367,13 +367,13 @@ PclPaintWindow( } break; case GCClipMask: - if ((pointer) pGC->clientClipType != (pointer)CT_NONE) { + if ((pointer)(long) pGC->clientClipType != (pointer)CT_NONE) { gcmask |= index; gcval[i++] = (pointer)CT_NONE; } break; case GCSubwindowMode: - if ((pointer) pGC->subWindowMode != newValues[SUBWINDOW]) { + if ((pointer)(long) pGC->subWindowMode != newValues[SUBWINDOW]) { gcmask |= index; gcval[i++] = newValues[SUBWINDOW]; } @@ -387,7 +387,7 @@ PclPaintWindow( } break; case GCFillStyle: - if ((pointer) pGC->fillStyle != newValues[FILLSTYLE]) { + if ((pointer)(long) pGC->fillStyle != newValues[FILLSTYLE]) { gcmask |= index; gcval[i++] = newValues[FILLSTYLE]; } |