diff options
author | Pär Björklund <per.bjorklund@gmail.com> | 2015-10-03 12:34:24 +0200 |
---|---|---|
committer | Pär Björklund <per.bjorklund@gmail.com> | 2015-10-03 12:34:24 +0200 |
commit | c23c3518e8919410ff0a887dfdc8a7e386f5e154 (patch) | |
tree | e48b4d13dc782bffcfc41d1ee82bc53acf934342 /project | |
parent | 4532cafc8e4250a2cd1bf7c81f8fe02adbfa9af9 (diff) | |
parent | 5e00738fe18e54ba3e0602568e9e852af25c3e5b (diff) |
Merge pull request #7952 from sportica/add_korean_keyboard
Add Korean keyboard
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index c3f69a7d33..ee679584eb 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -522,6 +522,7 @@ <ClCompile Include="..\..\xbmc\GUIPassword.cpp" /> <ClCompile Include="..\..\xbmc\input\ButtonTranslator.cpp" /> <ClCompile Include="..\..\xbmc\input\InertialScrollingHandler.cpp" /> + <ClCompile Include="..\..\xbmc\input\InputCodingTableKorean.cpp" /> <ClCompile Include="..\..\xbmc\input\InputManager.cpp" /> <ClCompile Include="..\..\xbmc\input\Key.cpp" /> <ClCompile Include="..\..\xbmc\input\InputCodingTableBaiduPY.cpp" /> @@ -993,6 +994,7 @@ <ClInclude Include="..\..\xbmc\guilib\imagefactory.h" /> <ClInclude Include="..\..\xbmc\guilib\ISliderCallback.h" /> <ClInclude Include="..\..\xbmc\IFileItemListModifier.h" /> + <ClInclude Include="..\..\xbmc\input\InputCodingTableKorean.h" /> <ClInclude Include="..\..\xbmc\input\InputManager.h" /> <ClInclude Include="..\..\xbmc\input\Key.h" /> <ClInclude Include="..\..\xbmc\input\KeyboardLayoutManager.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 4ed9479e11..2f4477d802 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3258,6 +3258,9 @@ <ClCompile Include="..\..\xbmc\addons\AddonCallbacksAudioEngine.cpp"> <Filter>addons</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\input\InputCodingTableKorean.cpp"> + <Filter>input</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -6322,6 +6325,9 @@ <ClInclude Include="..\..\xbmc\utils\ScopeGuard.h"> <Filter>utils</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\input\InputCodingTableKorean.h"> + <Filter>input</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |