diff options
Diffstat (limited to 'dbe')
-rw-r--r-- | dbe/dbe.c | 4 | ||||
-rw-r--r-- | dbe/midbe.c | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -413,7 +413,7 @@ ProcDbeDeallocateBackBufferName(ClientPtr client) return dbeErrorBase + DbeBadBuffer; } - FreeResource(stuff->buffer, RT_NONE); + FreeResource(stuff->buffer, X11_RESTYPE_NONE); return Success; @@ -1314,7 +1314,7 @@ DbeDestroyWindow(WindowPtr pWin) * NULL if there are no more buffer IDs associated with this * window. */ - FreeResource(pDbeWindowPriv->IDs[0], RT_NONE); + FreeResource(pDbeWindowPriv->IDs[0], X11_RESTYPE_NONE); pDbeWindowPriv = DBE_WINDOW_PRIV(pWin); } } diff --git a/dbe/midbe.c b/dbe/midbe.c index 9684d45bd..c646bc0c7 100644 --- a/dbe/midbe.c +++ b/dbe/midbe.c @@ -177,7 +177,7 @@ miDbeAllocBackBufferName(WindowPtr pWin, XID bufId, int swapAction) if (rc != Success || !AddResource(bufId, dbeDrawableResType, pDbeWindowPriv->pBackBuffer)) { /* free the buffer and the drawable resource */ - FreeResource(bufId, RT_NONE); + FreeResource(bufId, X11_RESTYPE_NONE); return (rc == Success) ? BadAlloc : rc; } @@ -599,7 +599,7 @@ miDbePositionWindow(WindowPtr pWin, int x, int y) /* DbeWindowPrivDelete() will free the window private if there no * more buffer IDs associated with this window. */ - FreeResource(pDbeWindowPriv->IDs[0], RT_NONE); + FreeResource(pDbeWindowPriv->IDs[0], X11_RESTYPE_NONE); pDbeWindowPriv = DBE_WINDOW_PRIV(pWin); } |