diff options
author | chriszero <zerov83@gmail.com> | 2014-11-17 21:38:09 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2014-11-17 21:38:09 +0100 |
commit | fc243d8bfde7c24168b67f90341e7d0d114114b2 (patch) | |
tree | c8756fd61712d63801f2085959ac1b9468533af6 /Config.h | |
parent | 23f9f7712bfa33b5a488a447a6fabe6035cc3240 (diff) | |
download | vdr-plugin-plex-fc243d8bfde7c24168b67f90341e7d0d114114b2.tar.gz vdr-plugin-plex-fc243d8bfde7c24168b67f90341e7d0d114114b2.tar.bz2 |
Removed c++11 dependency
Diffstat (limited to 'Config.h')
-rw-r--r-- | Config.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -35,8 +35,8 @@ public: return instance; } - std::string s_username = "username"; - std::string s_password = "password"; + std::string s_username; + std::string s_password; bool HideMainMenuEntry; bool DisableRemote; @@ -50,7 +50,7 @@ public: private: - Config() {} + Config(); std::string s_uuid; std::string s_hostname; }; |