From 2b3b6d558fab78107f6cd04783d5348446f3890c Mon Sep 17 00:00:00 2001 From: Andrei Kortunov Date: Fri, 21 Apr 2017 19:37:09 +0400 Subject: [PATCH] Move updatePinnedWindows() function to private section --- apps/openmw/mwgui/windowmanagerimp.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw/mwgui/windowmanagerimp.hpp b/apps/openmw/mwgui/windowmanagerimp.hpp index 1b8ceecc2f..787c885989 100644 --- a/apps/openmw/mwgui/windowmanagerimp.hpp +++ b/apps/openmw/mwgui/windowmanagerimp.hpp @@ -361,8 +361,6 @@ namespace MWGui virtual void pinWindow (MWGui::GuiWindow window); - void updatePinnedWindows (); - /// Fade the screen in, over \a time seconds virtual void fadeScreenIn(const float time, bool clearQueue); /// Fade the screen out to black, over \a time seconds @@ -541,6 +539,8 @@ namespace MWGui void createTextures(); void createCursors(); void setMenuTransparency(float value); + + void updatePinnedWindows(); }; }