Commit 1b91c8ac authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

GCOps.c: make internal function Boolean

parent 4303b113
...@@ -211,18 +211,18 @@ RegionPtr nxagentBitBlitHelper(GC *pGC) ...@@ -211,18 +211,18 @@ RegionPtr nxagentBitBlitHelper(GC *pGC)
* redirect property. * redirect property.
*/ */
int nxagentWindowIsPopup(DrawablePtr pDrawable) Bool nxagentWindowIsPopup(DrawablePtr pDrawable)
{ {
if (pDrawable -> type != DRAWABLE_WINDOW) if (pDrawable -> type != DRAWABLE_WINDOW)
{ {
return 0; return 0;
} }
int windowIsPopup = 0; Bool windowIsPopup = False;
if (((WindowPtr) pDrawable) -> overrideRedirect == 1) if (((WindowPtr) pDrawable) -> overrideRedirect == 1)
{ {
windowIsPopup = 1; windowIsPopup = True;
} }
else else
{ {
...@@ -244,7 +244,7 @@ int nxagentWindowIsPopup(DrawablePtr pDrawable) ...@@ -244,7 +244,7 @@ int nxagentWindowIsPopup(DrawablePtr pDrawable)
if (parent -> overrideRedirect == 1) if (parent -> overrideRedirect == 1)
{ {
windowIsPopup = 1; windowIsPopup = True;
break; break;
} }
...@@ -254,7 +254,7 @@ int nxagentWindowIsPopup(DrawablePtr pDrawable) ...@@ -254,7 +254,7 @@ int nxagentWindowIsPopup(DrawablePtr pDrawable)
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentWindowIsPopup: Window [%p] %s to be a popup.\n", (void *) pDrawable, fprintf(stderr, "nxagentWindowIsPopup: Window [%p] %s to be a popup.\n", (void *) pDrawable,
windowIsPopup == 1 ? "seems" : "does not seem"); windowIsPopup ? "seems" : "does not seem");
#endif #endif
return windowIsPopup; return windowIsPopup;
...@@ -285,7 +285,7 @@ FIXME: The popup could be synchronized with one single put image, ...@@ -285,7 +285,7 @@ FIXME: The popup could be synchronized with one single put image,
if (nxagentOption(DeferLevel) >= 2 && if (nxagentOption(DeferLevel) >= 2 &&
pSrcDrawable -> type == DRAWABLE_PIXMAP && pSrcDrawable -> type == DRAWABLE_PIXMAP &&
nxagentPixmapContainTrapezoids((PixmapPtr) pSrcDrawable) == 1 && nxagentPixmapContainTrapezoids((PixmapPtr) pSrcDrawable) == 1 &&
nxagentWindowIsPopup(pDstDrawable) == 1) nxagentWindowIsPopup(pDstDrawable))
{ {
RegionPtr pSrcRegion = nxagentCreateRegion(pSrcDrawable, NULL, srcx, srcy, width, height); RegionPtr pSrcRegion = nxagentCreateRegion(pSrcDrawable, NULL, srcx, srcy, width, height);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment