diff options
author | jasper | 2007-05-28 18:34:27 +0000 |
---|---|---|
committer | jasper | 2007-05-28 18:34:27 +0000 |
commit | 4cf5a98fa42b6d99a178eda07a9e42f91e02c97d (patch) | |
tree | 2e025de77387e856ddb58f0b918477d8da17b3c6 /calmwm.h | |
parent | 5116ffb4630d2bcf16cd2ab429dc6baba29e40bb (diff) | |
download | cwm-4cf5a98fa42b6d99a178eda07a9e42f91e02c97d.tar.gz |
convert globals from G_foo to Foo, as per TODO.
"looks good" pedro@, ok matthieu@
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -4,7 +4,7 @@ * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> * All rights reserved. * - * $Id: calmwm.h,v 1.4 2007/05/27 09:23:12 jasper Exp $ + * $Id: calmwm.h,v 1.5 2007/05/28 18:34:27 jasper Exp $ */ #ifndef _CALMWM_H_ @@ -484,25 +484,25 @@ struct fontdesc *font_getx(struct screen_ctx *sc, const char *name); /* Externs */ -extern Display *G_dpy; -extern XFontStruct *G_font; +extern Display *X_Dpy; +extern XFontStruct *X_Font; -extern Cursor G_cursor_move; -extern Cursor G_cursor_resize; -extern Cursor G_cursor_select; -extern Cursor G_cursor_default; -extern Cursor G_cursor_question; +extern Cursor Cursor_move; +extern Cursor Cursor_resize; +extern Cursor Cursor_select; +extern Cursor Cursor_default; +extern Cursor Cursor_question; -extern struct screen_ctx_q G_screenq; -extern struct screen_ctx *G_curscreen; -extern u_int G_nscreens; +extern struct screen_ctx_q Screenq; +extern struct screen_ctx *curscreen; +extern u_int Nscreens; -extern struct client_ctx_q G_clientq; +extern struct client_ctx_q Clientq; -extern int G_doshape, G_shape_ev; -extern struct conf G_conf; +extern int Doshape, Shape_ev; +extern struct conf Conf; -extern int G_groupmode; +extern int Groupmode; extern struct fontdesc *DefaultFont; |