diff options
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 |