diff options
author | Jamey Sharp <jamey@minilop.net> | 2010-05-08 14:10:51 -0700 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2010-05-13 17:13:48 -0700 |
commit | e2929db7b737413cf93fbebdf4d15abdfebff05c (patch) | |
tree | b32ddbf9c163f8eb814ebdaa4b22301b82af0906 /fb | |
parent | 95728ca09d45afc84c8d1828c09c6b6725f1a58d (diff) |
dixChangeGC callers: Use ChangeGCVal instead of XID almost everywhere.
The exceptions are ProcChangeGC and CreateGC.
Signed-off-by: Jamey Sharp <jamey@minilop.net>
Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'fb')
-rw-r--r-- | fb/fbseg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fb/fbseg.c b/fb/fbseg.c index 80dd48092..28a9cf04f 100644 --- a/fb/fbseg.c +++ b/fb/fbseg.c @@ -250,7 +250,9 @@ fbSetFg (DrawablePtr pDrawable, { if (fg != pGC->fgPixel) { - dixChangeGC (NullClient, pGC, GCForeground, &fg, NULL); + ChangeGCVal val; + val.val = fg; + dixChangeGC (NullClient, pGC, GCForeground, NULL, &val); ValidateGC (pDrawable, pGC); } } |