diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-10-07 02:01:42 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-10-07 02:01:42 +0000 |
commit | 2647224a35cfd9452659e3853ab66963b866110b (patch) | |
tree | 9f0cd1e4118b56a561a5ecefce4fdae4e9d1e295 /guilib/GUIVisualisationControl.cpp | |
parent | 363c74fafa695c1bfb23c0bf34f35ba69c1212ec (diff) |
cosmetic: m_gWindowManager -> g_windowManager for consistency.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23493 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIVisualisationControl.cpp')
-rw-r--r-- | guilib/GUIVisualisationControl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guilib/GUIVisualisationControl.cpp b/guilib/GUIVisualisationControl.cpp index 2ee9037808..446864edce 100644 --- a/guilib/GUIVisualisationControl.cpp +++ b/guilib/GUIVisualisationControl.cpp @@ -102,7 +102,7 @@ void CGUIVisualisationControl::FreeVisualisation() m_bInitialized = false; // tell our app that we're going CGUIMessage msg(GUI_MSG_VISUALISATION_UNLOADING, 0, 0); - m_gWindowManager.SendMessage(msg); + g_windowManager.SendMessage(msg); CSingleLock lock (m_critSection); @@ -187,7 +187,7 @@ void CGUIVisualisationControl::LoadVisualisation() // tell our app that we're back CGUIMessage msg(GUI_MSG_VISUALISATION_LOADED, 0, 0, 0, 0, m_pVisualisation); - m_gWindowManager.SendMessage(msg); + g_windowManager.SendMessage(msg); } void CGUIVisualisationControl::UpdateVisibility(const CGUIListItem *item) |