diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2014-08-12 08:31:05 +1200 |
---|---|---|
committer | jmarshallnz <jcmarsha@gmail.com> | 2014-08-12 08:31:05 +1200 |
commit | 39f5ec25bd352d01ac5684001bae4e6afbac2c27 (patch) | |
tree | 000c7d55c1149890f046427f19fa2c8efb9294a0 /project | |
parent | bdf39043b7c39a489d6ce7229b5e70fd6a5aeaf0 (diff) | |
parent | bfb7bbf97413aba3733811998a37c3b00a87f5c8 (diff) |
Merge pull request #5010 from jmarshallnz/keyboard_layouts
Support international keyboard layouts in the virtual 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 271ee3aa36..e5b6e16975 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -486,6 +486,7 @@ <ClCompile Include="..\..\xbmc\GUIPassword.cpp" /> <ClCompile Include="..\..\xbmc\input\ButtonTranslator.cpp" /> <ClCompile Include="..\..\xbmc\input\InertialScrollingHandler.cpp" /> + <ClCompile Include="..\..\xbmc\input\KeyboardLayout.cpp" /> <ClCompile Include="..\..\xbmc\input\KeyboardLayoutConfiguration.cpp" /> <ClCompile Include="..\..\xbmc\input\KeyboardStat.cpp" /> <ClCompile Include="..\..\xbmc\input\MouseStat.cpp" /> @@ -1804,6 +1805,7 @@ <ClInclude Include="..\..\xbmc\GUIUserMessages.h" /> <ClInclude Include="..\..\xbmc\input\ButtonTranslator.h" /> <ClInclude Include="..\..\xbmc\input\InertialScrollingHandler.h" /> + <ClInclude Include="..\..\xbmc\input\KeyboardLayout.h" /> <ClInclude Include="..\..\xbmc\input\KeyboardLayoutConfiguration.h" /> <ClInclude Include="..\..\xbmc\input\KeyboardStat.h" /> <ClInclude Include="..\..\xbmc\input\MouseStat.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 342fb9a5f5..6469841671 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -1132,6 +1132,9 @@ <ClCompile Include="..\..\xbmc\input\ButtonTranslator.cpp"> <Filter>input</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\input\KeyboardLayout.cpp"> + <Filter>input</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\input\KeyboardLayoutConfiguration.cpp"> <Filter>input</Filter> </ClCompile> @@ -4029,6 +4032,9 @@ <ClInclude Include="..\..\xbmc\input\ButtonTranslator.h"> <Filter>input</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\input\KeyboardLayout.h"> + <Filter>input</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\input\KeyboardLayoutConfiguration.h"> <Filter>input</Filter> </ClInclude> |