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/src/steam_dialogs.cpp | |
parent | 131d86ed82bde79889ef8d0de3b37707ba5e2a00 (diff) |
this feature was never used and only causes problems
Diffstat (limited to 'protocols/Steam/src/steam_dialogs.cpp')
-rw-r--r-- | protocols/Steam/src/steam_dialogs.cpp | 8 |
1 files changed, 4 insertions, 4 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)
{
|