Skip to content

Commit

Permalink
libxbmc: fix whitespace after last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
theuni committed Jun 7, 2012
1 parent fd91cc3 commit 4d8a9bb
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions xbmc/Application.cpp
Expand Up @@ -2746,18 +2746,18 @@ void CApplication::FrameMove(bool processEvents, bool processGUI)

if (processGUI)
{
g_graphicsContext.Lock();
// check if there are notifications to display
CGUIDialogKaiToast *toast = (CGUIDialogKaiToast *)g_windowManager.GetWindow(WINDOW_DIALOG_KAI_TOAST);
if (toast && toast->DoWork())
{
if (!toast->IsDialogRunning())
g_graphicsContext.Lock();
// check if there are notifications to display
CGUIDialogKaiToast *toast = (CGUIDialogKaiToast *)g_windowManager.GetWindow(WINDOW_DIALOG_KAI_TOAST);
if (toast && toast->DoWork())
{
toast->Show();
if (!toast->IsDialogRunning())
{
toast->Show();
}
}
}
g_graphicsContext.Unlock();
CWinEvents::MessagePump();
g_graphicsContext.Unlock();
CWinEvents::MessagePump();
}

UpdateLCD();
Expand All @@ -2779,9 +2779,9 @@ void CApplication::FrameMove(bool processEvents, bool processGUI)
}
if (processGUI)
{
if (!m_bStop)
g_windowManager.Process(CTimeUtils::GetFrameTime());
g_windowManager.FrameMove();
if (!m_bStop)
g_windowManager.Process(CTimeUtils::GetFrameTime());
g_windowManager.FrameMove();
}
}

Expand Down

0 comments on commit 4d8a9bb

Please sign in to comment.