diff options
Diffstat (limited to 'SubscriptionManager.cpp')
| -rw-r--r-- | SubscriptionManager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/SubscriptionManager.cpp b/SubscriptionManager.cpp index 4d4311d..4948d99 100644 --- a/SubscriptionManager.cpp +++ b/SubscriptionManager.cpp @@ -234,13 +234,13 @@ namespace plexclient { ActionManager::ActionManager() { } - void ActionManager::AddAction(cVideo video) { + void ActionManager::AddAction(Action action) { m_myLock.Lock(&m_myMutex); - m_Action = video; + m_Action = action; m_isAction = true; } - cVideo ActionManager::GetAction() { + Action ActionManager::GetAction() { m_myLock.Lock(&m_myMutex); m_isAction = false; return m_Action; |
