diff options
author | chriszero <zerov83@gmail.com> | 2015-02-17 19:33:13 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-17 19:33:13 +0100 |
commit | 216db1e9eb1800df1969ba3fd6755f898a0b2526 (patch) | |
tree | 191d5b4f0c768ba966066a8900288e51ce7c90d6 /plex.cpp | |
parent | 4a86011372c06315b2796f2f4e82c7801027453e (diff) | |
download | vdr-plugin-plex-216db1e9eb1800df1969ba3fd6755f898a0b2526.tar.gz vdr-plugin-plex-216db1e9eb1800df1969ba3fd6755f898a0b2526.tar.bz2 |
Authentication
Diffstat (limited to 'plex.cpp')
-rw-r--r-- | plex.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -67,9 +67,9 @@ eOSState cPlexBrowser::ProcessKey(eKeys key) // call standard function state = cOsdMenu::ProcessKey(key); - if (state || key != kNone) { - dsyslog("[plex]%s: state=%d key=%d\n", __FUNCTION__, state, key); - } + //if (state || key != kNone) { + // dsyslog("[plex]%s: state=%d key=%d\n", __FUNCTION__, state, key); + //} switch (state) { case osUnknown: @@ -118,7 +118,7 @@ eOSState cPlexBrowser::ProcessSelected() if(item->IsDir()) { plexclient::Directory* pDir = item->GetAttachedDirectory(); pCont = pService->GetSection(pDir->m_sKey); - //SetTitle(pDir->m_sTitle.c_str()); + //SetTitle(pDir->m_sTitle); CreateMenu(); return osContinue; } @@ -214,9 +214,9 @@ eOSState cPlayMenu::ProcessKey(eKeys key) { eOSState state; - if (key != kNone) { - dsyslog("[plex]%s: key=%d\n", __FUNCTION__, key); - } + //if (key != kNone) { + // dsyslog("[plex]%s: key=%d\n", __FUNCTION__, key); + //} // call standard function state = cOsdMenu::ProcessKey(key); |