[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / dialogs / GUIDialogPlayerProcessInfo.cpp
blob87ec544b452ee1be1ab803bb7a79890585fd43d3
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #include "GUIDialogPlayerProcessInfo.h"
11 #include "input/actions/Action.h"
12 #include "input/actions/ActionIDs.h"
14 CGUIDialogPlayerProcessInfo::CGUIDialogPlayerProcessInfo(void)
15 : CGUIDialog(WINDOW_DIALOG_PLAYER_PROCESS_INFO, "DialogPlayerProcessInfo.xml")
17 m_loadType = KEEP_IN_MEMORY;
20 CGUIDialogPlayerProcessInfo::~CGUIDialogPlayerProcessInfo(void) = default;
22 bool CGUIDialogPlayerProcessInfo::OnAction(const CAction &action)
24 if (action.GetID() == ACTION_PLAYER_PROCESS_INFO)
26 Close();
27 return true;
29 return CGUIDialog::OnAction(action);