diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2015-12-18 14:13:39 +0100 |
---|---|---|
committer | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2015-12-18 14:13:39 +0100 |
commit | 5cd85cb42eb012543e34cfba7031733f0b433360 (patch) | |
tree | 3a6465f62a948937df7d19ef92cfc691cdbc7cd0 /project | |
parent | 7f55df5b6594a99006d963e977725dd95b463fe5 (diff) | |
parent | 6ebec9604645715b76d482ccc261c4c95fdc203f (diff) |
Merge pull request #8561 from ksooo/pvr-separate-timer-window
[PVR] Feature: Separate windows for "Timer Rules" and "Timers"
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 4 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 567698cf30..115019e97a 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -817,7 +817,9 @@ <ClCompile Include="..\..\xbmc\pvr\windows\GUIWindowPVRGuide.cpp" /> <ClCompile Include="..\..\xbmc\pvr\windows\GUIWindowPVRRecordings.cpp" /> <ClCompile Include="..\..\xbmc\pvr\windows\GUIWindowPVRSearch.cpp" /> + <ClCompile Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimerRules.cpp" /> <ClCompile Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimers.cpp" /> + <ClCompile Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimersBase.cpp" /> <ClCompile Include="..\..\xbmc\rendering\dx\GUIWindowTestPatternDX.cpp" /> <ClCompile Include="..\..\xbmc\rendering\dx\RenderSystemDX.cpp" /> <ClCompile Include="..\..\xbmc\rendering\RenderSystem.cpp" /> @@ -1130,6 +1132,8 @@ <ClInclude Include="..\..\xbmc\profiles\windows\GUIWindowSettingsProfile.h" /> <ClInclude Include="..\..\xbmc\pvr\PVRSettings.h" /> <ClInclude Include="..\..\xbmc\pvr\timers\PVRTimerType.h" /> + <ClInclude Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimerRules.h" /> + <ClInclude Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimersBase.h" /> <ClInclude Include="..\..\xbmc\settings\AudioDSPSettings.h" /> <ClInclude Include="..\..\xbmc\settings\dialogs\GUIDialogAudioDSPManager.h" /> <ClInclude Include="..\..\xbmc\settings\dialogs\GUIDialogAudioDSPSettings.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index bc00b36012..24f2691f34 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3249,6 +3249,12 @@ <ClCompile Include="..\..\xbmc\guilib\FFmpegImage.cpp"> <Filter>guilib</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimerRules.cpp"> + <Filter>pvr\windows</Filter> + </ClCompile> + <ClCompile Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimersBase.cpp"> + <Filter>pvr\windows</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -6291,6 +6297,12 @@ <ClInclude Include="..\..\xbmc\guilib\FFmpegImage.h"> <Filter>guilib</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimerRules.h"> + <Filter>pvr\windows</Filter> + </ClInclude> + <ClInclude Include="..\..\xbmc\pvr\windows\GUIWindowPVRTimersBase.h"> + <Filter>pvr\windows</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |