aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorokan2016-09-29 00:21:55 +0000
committerokan2016-09-29 00:21:55 +0000
commit0f86dbbd38ab71c45557b98c63a1c0952b2cfda1 (patch)
treee079fb602ba41fa9c3ade6d09b4c6bc282153b43 /conf.c
parent5f5374eb8ec00ff4d793c6a037f20dd2a1a91cd8 (diff)
downloadcwm-0f86dbbd38ab71c45557b98c63a1c0952b2cfda1.tar.gz
Mechanical change: move screen menu bits to their own struct.
Diffstat (limited to '')
-rw-r--r--conf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/conf.c b/conf.c
index f414bb5..5791db4 100644
--- a/conf.c
+++ b/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: conf.c,v 1.206 2016/09/22 14:36:03 okan Exp $
+ * $OpenBSD: conf.c,v 1.207 2016/09/29 00:21:55 okan Exp $
*/
#include <sys/types.h>
@@ -162,13 +162,13 @@ conf_screen(struct screen_ctx *sc)
}
}
- sc->menuwin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1,
+ sc->menu.win = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1,
Conf.bwidth,
sc->xftcolor[CWM_COLOR_MENU_FG].pixel,
sc->xftcolor[CWM_COLOR_MENU_BG].pixel);
- sc->xftdraw = XftDrawCreate(X_Dpy, sc->menuwin, visual, colormap);
- if (sc->xftdraw == NULL)
+ sc->menu.xftdraw = XftDrawCreate(X_Dpy, sc->menu.win, visual, colormap);
+ if (sc->menu.xftdraw == NULL)
errx(1, "XftDrawCreate");
conf_grab_kbd(sc->rootwin);