diff options
Diffstat (limited to 'protocols/SkypeWeb/src/skype_dialogs.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_dialogs.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/protocols/SkypeWeb/src/skype_dialogs.h b/protocols/SkypeWeb/src/skype_dialogs.h index d7be605e94..b07265ef1b 100644 --- a/protocols/SkypeWeb/src/skype_dialogs.h +++ b/protocols/SkypeWeb/src/skype_dialogs.h @@ -20,41 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. typedef CProtoDlgBase<CSkypeProto> CSkypeDlgBase;
-class CSkypePasswordEditor : public CSkypeDlgBase
-{
-private:
- typedef CSkypeDlgBase CSuper;
-
- CCtrlButton m_ok;
- CCtrlEdit m_password;
- CCtrlCheck m_savePermanently;
-
-protected:
- void OnInitDialog()
- {
- SendMessage(m_password.GetHwnd(), EM_LIMITTEXT, 20, 0);
- }
-
- void OnOk(CCtrlButton*)
- {
- /*if (m_savePermanently.Enabled())
- m_proto->setString("Password", m_password.GetTextA());
- if (m_proto->password != NULL)
- mir_free(m_proto->password);
- m_proto->password = mir_utf8encodeW(m_password.GetText());
- */
- EndDialog(m_hwnd, 1);
- }
-
-public:
- CSkypePasswordEditor(CSkypeProto *proto) :
- CSkypeDlgBase(proto, IDD_PASSWORD_EDITOR, false), m_ok(this, IDOK),
- m_password(this, IDC_PASSWORD), m_savePermanently(this, IDC_SAVEPERMANENTLY)
- {
- m_ok.OnClick = Callback(this, &CSkypePasswordEditor::OnOk);
- }
-};
-
class CSkypeInviteDlg : public CSkypeDlgBase
{
private:
|