summaryrefslogtreecommitdiff
path: root/cPlexOsdItem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cPlexOsdItem.cpp')
-rw-r--r--cPlexOsdItem.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/cPlexOsdItem.cpp b/cPlexOsdItem.cpp
index 2d006c3..b2e00a8 100644
--- a/cPlexOsdItem.cpp
+++ b/cPlexOsdItem.cpp
@@ -23,6 +23,15 @@ cPlexOsdItem::cPlexOsdItem(const char* title, plexclient::Directory* obj) :cOsdI
m_bVideo = false;
}
+cPlexOsdItem::cPlexOsdItem(const char* title, plexclient::Stream* obj) :cOsdItem(title) {
+ stream = *obj;
+ dir = NULL;
+ item = NULL;
+ pservice = NULL;
+ m_bVideo = false;
+ m_bDir = false;
+}
+
plexclient::Video* cPlexOsdItem::GetAttachedVideo() {
return item;
}