diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-31 22:54:01 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-31 22:54:01 -0700 |
commit | ce4e11143f982234be1076e384b31228f1cc84ae (patch) | |
tree | af718100e164c7f87ea7412d453aedf33162b591 /src/events.c | |
parent | 8a3d3a58350506a99efd24f9856466a99bbb9c51 (diff) |
Make more functions static that aren't called from other files
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/events.c')
-rw-r--r-- | src/events.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/events.c b/src/events.c index b900516..5b661f6 100644 --- a/src/events.c +++ b/src/events.c @@ -109,6 +109,7 @@ static Bool HENQueueScanner ( Display *dpy, XEvent *ev, char *args ); static Bool HLNQueueScanner ( Display *dpy, XEvent *ev, char *args ); static void flush_expose ( Window w ); static Bool UninstallRootColormapQScanner ( Display *dpy, XEvent *ev, char *args ); +static void RedoIconName ( void ); int ButtonPressed = -1; int Cancel = FALSE; @@ -942,7 +943,7 @@ HandlePropertyNotify(void) /** * procedure to re-position the icon window and name */ -void +static void RedoIconName(void) { int x, y; |