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