This commit is contained in:
2016-10-23 21:22:41 +02:00
parent d140bae224
commit 2dbfe0e530
12 changed files with 428 additions and 16 deletions
+11
View File
@@ -65,3 +65,14 @@ bool cKodiLibrary::init()
return(iVideoCount != 0);
}
cKodiVideoLibrary* cKodiLibrary::videoLibrary()
{
return(m_lpKodiVideoLibrary);
}
void cKodiLibrary::fillVideoList(QStandardItemModel* lpModel)
{
if(m_lpKodiVideoLibrary)
m_lpKodiVideoLibrary->fillVideoList(lpModel);
}