diff options
author | montellese <montellese@kodi.tv> | 2015-05-21 21:52:03 +0200 |
---|---|---|
committer | montellese <montellese@kodi.tv> | 2015-08-14 17:59:14 +0200 |
commit | f44ed3caf3e4d44f773e983184619911ca82b157 (patch) | |
tree | 0aab40e93c907a85ce9ec550650f9e7cd538d5d0 /project | |
parent | 61ce8731d82132da5811f66fbc66130fca519141 (diff) |
refactor video item refreshing into CVideoLibraryRefreshingJob
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 cbe52b5e4e..922823493b 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -1269,6 +1269,7 @@ <ClCompile Include="..\..\xbmc\video\jobs\VideoLibraryJob.cpp" /> <ClCompile Include="..\..\xbmc\video\jobs\VideoLibraryMarkWatchedJob.cpp" /> <ClCompile Include="..\..\xbmc\video\jobs\VideoLibraryProgressJob.cpp" /> + <ClCompile Include="..\..\xbmc\video\jobs\VideoLibraryRefreshingJob.cpp" /> <ClCompile Include="..\..\xbmc\video\jobs\VideoLibraryScanningJob.cpp" /> <ClCompile Include="..\..\xbmc\video\PlayerController.cpp" /> <ClCompile Include="..\..\xbmc\video\videosync\VideoSyncD3D.cpp" /> @@ -2109,6 +2110,7 @@ <ClInclude Include="..\..\xbmc\video\jobs\VideoLibraryJob.h" /> <ClInclude Include="..\..\xbmc\video\jobs\VideoLibraryMarkWatchedJob.h" /> <ClInclude Include="..\..\xbmc\video\jobs\VideoLibraryProgressJob.h" /> + <ClInclude Include="..\..\xbmc\video\jobs\VideoLibraryRefreshingJob.h" /> <ClInclude Include="..\..\xbmc\video\jobs\VideoLibraryScanningJob.h" /> <ClInclude Include="..\..\xbmc\video\PlayerController.h" /> <ClInclude Include="..\..\xbmc\video\videosync\VideoSync.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index bd62734f05..041cdfadeb 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3198,6 +3198,9 @@ <ClCompile Include="..\..\xbmc\filesystem\XbtManager.cpp"> <Filter>filesystem</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\video\jobs\VideoLibraryRefreshingJob.cpp"> + <Filter>video\jobs</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -6193,6 +6196,9 @@ <ClInclude Include="..\..\xbmc\filesystem\XbtManager.h"> <Filter>filesystem</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\video\jobs\VideoLibraryRefreshingJob.h"> + <Filter>video\jobs</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |