diff options
-rw-r--r-- | src/screen.h | 2 | ||||
-rw-r--r-- | src/twm.c | 2 | ||||
-rw-r--r-- | src/util.c | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/screen.h b/src/screen.h index 3a1cb52..d8bf996 100644 --- a/src/screen.h +++ b/src/screen.h @@ -56,7 +56,7 @@ typedef struct _TitlebarPixmaps { Pixmap resize; Pixmap question; Pixmap menu; - Pixmap delete; + Pixmap remove; } TitlebarPixmaps; typedef struct ScreenInfo { @@ -522,7 +522,7 @@ main(int argc, char *argv[]) Scr->tbpm.resize = None; Scr->tbpm.question = None; Scr->tbpm.menu = None; - Scr->tbpm.delete = None; + Scr->tbpm.remove = None; InitVariables(); InitMenus(); @@ -919,11 +919,11 @@ CreateDotPixmap(unsigned *widthp, unsigned *heightp) if (!(h & 1)) h--; *widthp = *heightp = (unsigned int) h; - if (Scr->tbpm.delete == None) { + if (Scr->tbpm.remove == None) { GC gc; Pixmap pix; - pix = Scr->tbpm.delete = + pix = Scr->tbpm.remove = XCreatePixmap(dpy, Scr->Root, (unsigned) h, (unsigned) h, 1); gc = XCreateGC(dpy, pix, 0L, NULL); XSetLineAttributes(dpy, gc, (unsigned) h, LineSolid, CapRound, @@ -934,7 +934,7 @@ CreateDotPixmap(unsigned *widthp, unsigned *heightp) XDrawLine(dpy, pix, gc, h / 2, h / 2, h / 2, h / 2); XFreeGC(dpy, gc); } - return Scr->tbpm.delete; + return Scr->tbpm.remove; } #define questionmark_width 8 |