diff options
author | aunsane <aunsane@gmail.com> | 2017-12-18 14:51:36 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-12-18 20:37:16 +0300 |
commit | 97254a71ba33edf4c829e4c4b0c4961c6348045f (patch) | |
tree | 83c4dc1b828dbce86ff68813defb2481ee178a09 /protocols/Tox/src/tox_profile.h | |
parent | 2626b146d53df3a5f9e7f8e9ed69c33a1145f9f3 (diff) |
Tox: enable profile encription (in test mode)
Diffstat (limited to 'protocols/Tox/src/tox_profile.h')
-rw-r--r-- | protocols/Tox/src/tox_profile.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/protocols/Tox/src/tox_profile.h b/protocols/Tox/src/tox_profile.h index 796f264d5b..6a0b31f1f5 100644 --- a/protocols/Tox/src/tox_profile.h +++ b/protocols/Tox/src/tox_profile.h @@ -4,16 +4,19 @@ class CToxPasswordEditor : public CToxDlgBase
{
private:
- CCtrlEdit password;
- CCtrlCheck savePermanently;
+ CCtrlEdit m_password;
+ CCtrlCheck m_savePermanently;
- CCtrlButton ok;
+ CCtrlButton m_ok;
protected:
+ void OnChange(CCtrlBase*);
void OnOk(CCtrlButton*);
public:
CToxPasswordEditor(CToxProto *proto);
+
+ wchar_t* GetPassword();
};
#endif //_TOX_PROFILE_H_
\ No newline at end of file |