diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-10-07 01:27:50 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-10-07 01:27:50 +0000 |
commit | 363c74fafa695c1bfb23c0bf34f35ba69c1212ec (patch) | |
tree | 1a2b21d1dd66db30ba57520ec093f1f7f0ce48df /guilib/GUIWindow.cpp | |
parent | a53a6e0fd407e28a4b5b34fcd3ea67bbd4e0df8a (diff) |
changed: Get rid of the use of g_graphicsContext to send messages (all it did was passed them on to the window manager.)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23492 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIWindow.cpp')
-rw-r--r-- | guilib/GUIWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guilib/GUIWindow.cpp b/guilib/GUIWindow.cpp index 8a76688113..8637bfbe1d 100644 --- a/guilib/GUIWindow.cpp +++ b/guilib/GUIWindow.cpp @@ -1003,7 +1003,7 @@ void CGUIWindow::RunActions(std::vector<CGUIActionDescriptor>& actions) { CGUIMessage message(GUI_MSG_EXECUTE, 0, GetID()); message.SetAction(tempActions[i]); - g_graphicsContext.SendMessage(message); + m_gWindowManager.SendMessage(message); } } |