diff options
author | Thomas Amland <thomas.amland@gmail.com> | 2015-06-21 21:42:55 +0200 |
---|---|---|
committer | Thomas Amland <thomas.amland@gmail.com> | 2015-07-28 09:57:43 +0200 |
commit | 8121cad3e9220d0aca4635a2e85c3129fc111224 (patch) | |
tree | 05685359b49f53ebf9c969ef0b4a29eab5782480 /project/VS2010Express | |
parent | d648cd6f210480cf98ac4d80e2942b33c6678bf5 (diff) |
[contextmenu] add support for sub-menus and multiple items
Diffstat (limited to 'project/VS2010Express')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index a98bdd8c48..cf322e90b2 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -211,6 +211,7 @@ <ClCompile Include="..\..\xbmc\AutoSwitch.cpp" /> <ClCompile Include="..\..\xbmc\BackgroundInfoLoader.cpp" /> <ClCompile Include="..\..\xbmc\CompileInfo.cpp" /> + <ClCompile Include="..\..\xbmc\ContextMenuItem.cpp" /> <ClCompile Include="..\..\xbmc\ContextMenuManager.cpp" /> <ClCompile Include="..\..\xbmc\contrib\kissfft\kiss_fft.c"> <CompileAs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">CompileAsCpp</CompileAs> @@ -1725,6 +1726,7 @@ <ClInclude Include="..\..\xbmc\Autorun.h" /> <ClInclude Include="..\..\xbmc\AutoSwitch.h" /> <ClInclude Include="..\..\xbmc\BackgroundInfoLoader.h" /> + <ClInclude Include="..\..\xbmc\ContextMenuItem.h" /> <ClInclude Include="..\..\xbmc\ContextMenuManager.h" /> <ClInclude Include="..\..\xbmc\cores\dvdplayer\DVDDemuxers\DVDDemuxPVRClient.h" /> <ClInclude Include="..\..\xbmc\cores\dvdplayer\DVDInputStreams\DVDInputStreamBluray.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index b4ca7ceffe..086f5c464b 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2227,6 +2227,7 @@ <ClCompile Include="..\..\xbmc\AutoSwitch.cpp" /> <ClCompile Include="..\..\xbmc\DynamicDll.cpp" /> <ClCompile Include="..\..\xbmc\CueDocument.cpp" /> + <ClCompile Include="..\..\xbmc\ContextMenuItem.cpp" /> <ClCompile Include="..\..\xbmc\ContextMenuManager.cpp" /> <ClCompile Include="..\..\xbmc\FileItem.cpp" /> <ClCompile Include="..\..\xbmc\GUIInfoManager.cpp" /> @@ -5240,6 +5241,7 @@ <ClInclude Include="..\..\xbmc\AutoSwitch.h" /> <ClInclude Include="..\..\xbmc\DynamicDll.h" /> <ClInclude Include="..\..\xbmc\CueDocument.h" /> + <ClInclude Include="..\..\xbmc\ContextMenuItem.h" /> <ClInclude Include="..\..\xbmc\ContextMenuManager.h" /> <ClInclude Include="..\..\xbmc\FileItem.h" /> <ClInclude Include="..\..\xbmc\GUIInfoManager.h" /> |