diff options
author | thlo <smarttv640@gmail.com> | 2013-10-03 12:34:48 +0200 |
---|---|---|
committer | thlo <smarttv640@gmail.com> | 2013-10-03 12:34:48 +0200 |
commit | e94c0c7cda32eb404fcc9aa6c36018d4b6984acf (patch) | |
tree | 948c95d51ea231f872f455e5015732b0e0e0123f /stvw_cfg.h | |
parent | 19bf017c9346d35a990366a12d8ba2f0e9622ef4 (diff) | |
download | vdr-plugin-smarttvweb-e94c0c7cda32eb404fcc9aa6c36018d4b6984acf.tar.gz vdr-plugin-smarttvweb-e94c0c7cda32eb404fcc9aa6c36018d4b6984acf.tar.bz2 |
handling of commands.conf added. smarttvweb.conf parameter changed from reccmds to commands.
Diffstat (limited to 'stvw_cfg.h')
-rwxr-xr-x | stvw_cfg.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -55,7 +55,7 @@ class cSmartTvConfig { eGroupSep mGroupSep; string mServerAddress; int mServerPort; - bool mRecCmds; + bool mCmds; public: cSmartTvConfig(string dir); @@ -73,7 +73,7 @@ class cSmartTvConfig { eGroupSep getGroupSep() { return mGroupSep; }; string getServerAddress() { return mServerAddress; }; int getServerPort() { return mServerPort; }; - bool getRecCmds() { return mRecCmds; }; + bool getCmds() { return mCmds; }; }; #endif |