summaryrefslogtreecommitdiff
path: root/stvw_cfg.h
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2013-10-03 12:34:48 +0200
committerthlo <smarttv640@gmail.com>2013-10-03 12:34:48 +0200
commite94c0c7cda32eb404fcc9aa6c36018d4b6984acf (patch)
tree948c95d51ea231f872f455e5015732b0e0e0123f /stvw_cfg.h
parent19bf017c9346d35a990366a12d8ba2f0e9622ef4 (diff)
downloadvdr-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-xstvw_cfg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stvw_cfg.h b/stvw_cfg.h
index 9001fe7..a3fd01e 100755
--- a/stvw_cfg.h
+++ b/stvw_cfg.h
@@ -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