From 9f5a96ead210338d8fc343108a8633da5e04e340 Mon Sep 17 00:00:00 2001 From: alberth Date: Sun, 29 Aug 2010 15:58:43 +0000 Subject: (svn r20689) -Codechange: Make some global functions used in 1 .cpp file static in that file. --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/window.cpp') diff --git a/src/window.cpp b/src/window.cpp index 4e2e42091..5d4eac2f3 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -145,7 +145,7 @@ void SetFocusedWindow(Window *w) * has a edit box as focused widget, or if a console is focused. * @return returns true if an edit box is in global focus or if the focused window is a console, else false */ -bool EditBoxInGlobalFocus() +static bool EditBoxInGlobalFocus() { if (_focused_window == NULL) return false; -- cgit v1.2.3-54-g00ecf