diff options
Diffstat (limited to 'xbmc/input/KeymapEnvironment.cpp')
-rw-r--r-- | xbmc/input/KeymapEnvironment.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/xbmc/input/KeymapEnvironment.cpp b/xbmc/input/KeymapEnvironment.cpp new file mode 100644 index 0000000..dbfe9f7 --- /dev/null +++ b/xbmc/input/KeymapEnvironment.cpp @@ -0,0 +1,16 @@ +/* + * Copyright (C) 2017-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#include "KeymapEnvironment.h" + +#include "WindowTranslator.h" + +int CKeymapEnvironment::GetFallthrough(int windowId) const +{ + return CWindowTranslator::GetFallbackWindow(windowId); +} |