diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-03 10:28:13 +0000 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-03 10:28:13 +0000 |
commit | edc0cb8937697a1ddb670fc847db4ef04e10dc5c (patch) | |
tree | 5d712dd49f8e71791eb51240d51fe6a5b40d8a09 /setup.h | |
parent | e806ce66c09209ed2659df4342fb80a6e99f9b68 (diff) | |
download | vdr-plugin-live-edc0cb8937697a1ddb670fc847db4ef04e10dc5c.tar.gz vdr-plugin-live-edc0cb8937697a1ddb670fc847db4ef04e10dc5c.tar.bz2 |
- admin password in setup is now hidden
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -68,9 +68,8 @@ Setup& LiveSetup(); class cMenuSetupLive : public cMenuSetupPage { protected: - virtual void Store(void); -// virtual eOSState ProcessKey(eKeys Key); - + virtual void Store(void); + virtual eOSState ProcessKey(eKeys Key); public: cMenuSetupLive(); @@ -81,6 +80,10 @@ private: int m_useAuth; char m_adminLogin[20]; char m_adminPassword[20]; + char m_tmpPassword[20]; + + void Set(void); + bool InEditMode(const char* ItemText, const char* ItemName, const char* ItemValue); }; } // namespace vdrlive |