diff options
author | Christian <zerov83@gmail.com> | 2016-04-02 23:28:44 +0200 |
---|---|---|
committer | Christian <zerov83@gmail.com> | 2016-04-02 23:28:44 +0200 |
commit | f94b31e13127247160815c5902e75f7bcbf3d393 (patch) | |
tree | 2f3baa9733d9a56473930152c5af097c0a271763 /cPlexOsdItem.cpp | |
parent | 893c0af051a0832b3bea59a1db4276c938e6211e (diff) | |
download | vdr-plugin-plex-f94b31e13127247160815c5902e75f7bcbf3d393.tar.gz vdr-plugin-plex-f94b31e13127247160815c5902e75f7bcbf3d393.tar.bz2 |
Code cleanup
Diffstat (limited to 'cPlexOsdItem.cpp')
-rw-r--r-- | cPlexOsdItem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cPlexOsdItem.cpp b/cPlexOsdItem.cpp index b2e00a8..4e4272f 100644 --- a/cPlexOsdItem.cpp +++ b/cPlexOsdItem.cpp @@ -11,7 +11,7 @@ cPlexOsdItem::cPlexOsdItem(const char* title, std::shared_ptr<plexclient::Plexse m_bDir = false; } -cPlexOsdItem::cPlexOsdItem(const char* title, plexclient::Video* obj) :cOsdItem(title) { +cPlexOsdItem::cPlexOsdItem(const char* title, plexclient::cVideo* obj) :cOsdItem(title) { item = obj; m_bVideo = true; m_bDir = false; @@ -32,7 +32,7 @@ cPlexOsdItem::cPlexOsdItem(const char* title, plexclient::Stream* obj) :cOsdItem m_bDir = false; } -plexclient::Video* cPlexOsdItem::GetAttachedVideo() { +plexclient::cVideo* cPlexOsdItem::GetAttachedVideo() { return item; } |