Mercurial > mplayer.hg
changeset 35699:36527758158b
Make wsWindowDecoration() static.
It now has only file scope.
author | ib |
---|---|
date | Sat, 19 Jan 2013 12:55:26 +0000 |
parents | e44757ea8f94 |
children | 7820bad7c1f8 |
files | gui/wm/ws.c gui/wm/ws.h |
diffstat | 2 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/wm/ws.c Sat Jan 19 12:53:14 2013 +0000 +++ b/gui/wm/ws.c Sat Jan 19 12:55:26 2013 +0000 @@ -783,7 +783,7 @@ XSetWMNormalHints(wsDisplay, win->WindowID, &size); } -void wsWindowDecoration(wsWindow *win) +static void wsWindowDecoration(wsWindow *win) { Atom wsMotifHints; struct {
--- a/gui/wm/ws.h Sat Jan 19 12:53:14 2013 +0000 +++ b/gui/wm/ws.h Sat Jan 19 12:55:26 2013 +0000 @@ -182,7 +182,6 @@ void wsWindowBackground(wsWindow *win, int r, int g, int b); void wsWindowClear(wsWindow *win); void wsWindowVisibility(wsWindow *win, int vis); -void wsWindowDecoration(wsWindow *win); void wsWindowLayer(Display *display, Window Win, Bool fullscreen); void wsWindowFullscreen(wsWindow *win); void wsWindowRedraw(wsWindow *win);