From 39c6e32cd231273ad493c8791d130df218fa16d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A4r=20Bj=C3=B6rklund?= Date: Tue, 3 Feb 2015 15:11:20 +0100 Subject: [PATCH] fixed indentation and style --- xbmc/Application.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index b0bbe077746cd..fabe145eb5104 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -2383,8 +2383,8 @@ bool CApplication::OnAction(const CAction &action) if (!CBuiltins::IsSystemPowerdownCommand(action.GetName()) || g_PVRManager.CanSystemPowerdown()) { - CBuiltins::Execute(action.GetName()); - m_navigationTimer.StartZero(); + CBuiltins::Execute(action.GetName()); + m_navigationTimer.StartZero(); } return true; } @@ -3165,14 +3165,14 @@ PlayBackRet CApplication::PlayStack(const CFileItem& item, bool bRestart) if (!haveTimes && !times.empty()) dbs.SetStackTimes(item.GetPath(), times); - if( item.m_lStartOffset == STARTOFFSET_RESUME ) + if (item.m_lStartOffset == STARTOFFSET_RESUME) { // can only resume seek here, not dvdstate CBookmark bookmark; std::string path = item.GetPath(); if (item.HasProperty("original_listitem_url") && URIUtils::IsPlugin(item.GetProperty("original_listitem_url").asString())) path = item.GetProperty("original_listitem_url").asString(); - if( dbs.GetResumeBookMark(path, bookmark) ) + if (dbs.GetResumeBookMark(path, bookmark)) seconds = bookmark.timeInSeconds; else seconds = 0.0f; @@ -4386,7 +4386,7 @@ bool CApplication::ExecuteXBMCAction(std::string actionStr) { if (!CBuiltins::IsSystemPowerdownCommand(actionStr) || g_PVRManager.CanSystemPowerdown()) - CBuiltins::Execute(actionStr); + CBuiltins::Execute(actionStr); } else {