summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/skype_dialogs.h
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-07-24 13:35:19 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-07-24 13:35:19 +0000
commit05b9e876bcbda86441b52d528b6875a7d211e734 (patch)
tree8a3bcd9d664b523589576c1cf1204753f8af4ee3 /protocols/SkypeWeb/src/skype_dialogs.h
parent9ea1fabf1643f117b46ee44d359084fe77bfd4f2 (diff)
SkypeWeb: More fixes.
git-svn-id: http://svn.miranda-ng.org/main/trunk@14676 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_dialogs.h')
-rw-r--r--protocols/SkypeWeb/src/skype_dialogs.h35
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: