summaryrefslogtreecommitdiff
path: root/plexOsd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plexOsd.cpp')
-rw-r--r--plexOsd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plexOsd.cpp b/plexOsd.cpp
index c74153e..0d89041 100644
--- a/plexOsd.cpp
+++ b/plexOsd.cpp
@@ -46,8 +46,8 @@ void cPlexBrowser::CreateMenu()
}
if(pCont && pCont->m_vVideos.size() > 0) {
- for(std::vector<plexclient::Video>::iterator it = pCont->m_vVideos.begin(); it != pCont->m_vVideos.end(); ++it) {
- plexclient::Video *vid = &(*it); // cast raw pointer
+ for(std::vector<plexclient::cVideo>::iterator it = pCont->m_vVideos.begin(); it != pCont->m_vVideos.end(); ++it) {
+ plexclient::cVideo *vid = &(*it); // cast raw pointer
Add(new cPlexOsdItem( vid->GetTitle().c_str(), vid) );
}
}