wmmoonclock: mark some file-scope variables static.
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
This commit is contained in:
parent
9fda6b107a
commit
f3c5aa1780
|
@ -43,14 +43,14 @@
|
||||||
/*
|
/*
|
||||||
* X11 Variables
|
* X11 Variables
|
||||||
*/
|
*/
|
||||||
int x_fd;
|
static int x_fd;
|
||||||
XSizeHints mysizehints;
|
static XSizeHints mysizehints;
|
||||||
XWMHints mywmhints;
|
static XWMHints mywmhints;
|
||||||
Pixel back_pix, fore_pix;
|
static Pixel back_pix, fore_pix;
|
||||||
char *Geometry = "";
|
static char *Geometry = "";
|
||||||
GC NormalGC;
|
static GC NormalGC;
|
||||||
XpmIcon wmgen;
|
static XpmIcon wmgen;
|
||||||
Pixmap pixmask;
|
static Pixmap pixmask;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue