diff options
author | Marc Horowitz <marc@mit.edu> | 1989-11-02 21:20:09 +0000 |
---|---|---|
committer | Marc Horowitz <marc@mit.edu> | 1989-11-02 21:20:09 +0000 |
commit | d9d180c3985d9626d79bf1b2f84406a9f105b33b (patch) | |
tree | 62773dfe0e37add4f3fa7ce587c92f67a43700cc /zwgc | |
parent | d638ada32c163cad9b3ef91faf359b59fae4ac51 (diff) |
Added missing arg to ChangeProp macro
Diffstat (limited to 'zwgc')
-rw-r--r-- | zwgc/xselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zwgc/xselect.c b/zwgc/xselect.c index b42815a..ef3add9 100644 --- a/zwgc/xselect.c +++ b/zwgc/xselect.c @@ -74,7 +74,7 @@ static Atom RequestAtoms[] = { #define PROP(prop,targ) ((prop)!=None?(prop):(targ)) #define ChangeProp(type,format,data,size) \ XChangeProperty(dpy,w,PROP(property,target),(type),(format), \ - (unsigned char *) (data),(size)) + PropModeReplace, (unsigned char *) (data),(size)) static void xselSetProperties(dpy,w,property,target,selreq) Display *dpy; |