diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-18 12:59:15 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-18 12:59:15 +0300 |
commit | 8f6650583ad1d12a081a1676275d8f527af33351 (patch) | |
tree | 707942e2f159e71f58d788087bd11f4855b523b9 /protocols/Steam | |
parent | 131d86ed82bde79889ef8d0de3b37707ba5e2a00 (diff) |
this feature was never used and only causes problems
Diffstat (limited to 'protocols/Steam')
-rw-r--r-- | protocols/Steam/src/steam_dialogs.cpp | 8 | ||||
-rw-r--r-- | protocols/Steam/src/steam_options.cpp | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/protocols/Steam/src/steam_dialogs.cpp b/protocols/Steam/src/steam_dialogs.cpp index 080b0b3d6b..569ee3de8f 100644 --- a/protocols/Steam/src/steam_dialogs.cpp +++ b/protocols/Steam/src/steam_dialogs.cpp @@ -1,7 +1,7 @@ #include "stdafx.h"
CSteamPasswordEditor::CSteamPasswordEditor(CSteamProto *proto)
- : CSteamDlgBase(proto, IDD_PASSWORD_EDITOR, false), m_ok(this, IDOK),
+ : CSteamDlgBase(proto, IDD_PASSWORD_EDITOR), m_ok(this, IDOK),
m_password(this, IDC_PASSWORD), m_savePermanently(this, IDC_SAVEPERMANENTLY)
{
m_ok.OnClick = Callback(this, &CSteamPasswordEditor::OnOk);
@@ -35,7 +35,7 @@ void CSteamPasswordEditor::OnClose() /////////////////////////////////////////////////////////////////////////////////
CSteamGuardDialog::CSteamGuardDialog(CSteamProto *proto, const char *domain)
- : CSteamDlgBase(proto, IDD_GUARD, false),
+ : CSteamDlgBase(proto, IDD_GUARD),
m_ok(this, IDOK),
m_text(this, IDC_TEXT),
m_link(this, IDC_GETDOMAIN, domain)
@@ -75,7 +75,7 @@ const char* CSteamGuardDialog::GetGuardCode() /////////////////////////////////////////////////////////////////////////////////
CSteamTwoFactorDialog::CSteamTwoFactorDialog(CSteamProto *proto)
-: CSteamDlgBase(proto, IDD_TWOFACTOR, false),
+: CSteamDlgBase(proto, IDD_TWOFACTOR),
m_ok(this, IDOK),
m_text(this, IDC_TEXT)
{
@@ -113,7 +113,7 @@ const char* CSteamTwoFactorDialog::GetTwoFactorCode() /////////////////////////////////////////////////////////////////////////////////
CSteamCaptchaDialog::CSteamCaptchaDialog(CSteamProto *proto, const uint8_t *captchaImage, int captchaImageSize)
- : CSteamDlgBase(proto, IDD_CAPTCHA, false),
+ : CSteamDlgBase(proto, IDD_CAPTCHA),
m_ok(this, IDOK), m_text(this, IDC_TEXT),
m_captchaImage(nullptr)
{
diff --git a/protocols/Steam/src/steam_options.cpp b/protocols/Steam/src/steam_options.cpp index 88716ca0c9..21ecd18828 100644 --- a/protocols/Steam/src/steam_options.cpp +++ b/protocols/Steam/src/steam_options.cpp @@ -1,7 +1,7 @@ #include "stdafx.h"
CSteamOptionsMain::CSteamOptionsMain(CSteamProto *proto, int idDialog, HWND hwndParent)
- : CSteamDlgBase(proto, idDialog, false),
+ : CSteamDlgBase(proto, idDialog),
m_username(this, IDC_USERNAME), m_password(this, IDC_PASSWORD),
m_group(this, IDC_GROUP), m_biggerAvatars(this, IDC_BIGGER_AVATARS),
m_showChatEvents(this, IDC_SHOW_CHAT_EVENTS), m_pollingErrorLimit(this, IDC_POLLINGERRORLIMITSPIN)
@@ -51,7 +51,7 @@ void CSteamOptionsMain::OnApply() /////////////////////////////////////////////////////////////////////////////////
CSteamOptionsBlockList::CSteamOptionsBlockList(CSteamProto *proto)
- : CSuper(proto, IDD_OPT_BLOCK_LIST, false),
+ : CSuper(proto, IDD_OPT_BLOCK_LIST),
m_list(this, IDC_LIST),
m_contacts(this, IDC_CONTACTS),
m_add(this, IDC_BLOCK)
|