(!1654) Xnest: replace XSetDashes() by xnest_set_dashes()
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
027822af2e
commit
1ced95d547
|
@ -172,8 +172,11 @@ xnestChangeGC(GCPtr pGC, unsigned long mask)
|
||||||
|
|
||||||
if (mask & GCDashList) {
|
if (mask & GCDashList) {
|
||||||
mask &= ~GCDashList;
|
mask &= ~GCDashList;
|
||||||
XSetDashes(xnestDisplay, xnestGC(pGC),
|
xcb_set_dashes(xnestUpstreamInfo.conn,
|
||||||
pGC->dashOffset, (char *) pGC->dash, pGC->numInDashList);
|
xnest_upstream_gc(pGC),
|
||||||
|
pGC->dashOffset,
|
||||||
|
pGC->numInDashList,
|
||||||
|
(uint8_t*) pGC->dash);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mask & GCArcMode)
|
if (mask & GCArcMode)
|
||||||
|
|
Loading…
Reference in New Issue