summaryrefslogtreecommitdiff
path: root/protocols/Tox/src
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Tox/src')
-rw-r--r--protocols/Tox/src/tox_options.cpp4
-rw-r--r--protocols/Tox/src/tox_profile.cpp6
2 files changed, 5 insertions, 5 deletions
diff --git a/protocols/Tox/src/tox_options.cpp b/protocols/Tox/src/tox_options.cpp
index f52202c1eb..dfaa9d528d 100644
--- a/protocols/Tox/src/tox_options.cpp
+++ b/protocols/Tox/src/tox_options.cpp
@@ -1,7 +1,7 @@
#include "stdafx.h"
CToxOptionsMain::CToxOptionsMain(CToxProto *proto, int idDialog)
- : CToxDlgBase(proto, idDialog, false),
+ : CToxDlgBase(proto, idDialog),
m_toxAddress(this, IDC_TOXID), m_toxAddressCopy(this, IDC_CLIPBOARD),
m_profileCreate(this, IDC_PROFILE_NEW), m_profileImport(this, IDC_PROFILE_IMPORT),
m_profileExport(this, IDC_PROFILE_EXPORT), m_nickname(this, IDC_NAME),
@@ -334,7 +334,7 @@ void CToxNodeEditor::OnClose()
/****************************************/
CToxOptionsNodeList::CToxOptionsNodeList(CToxProto *proto)
- : CSuper(proto, IDD_OPTIONS_NODES, false),
+ : CSuper(proto, IDD_OPTIONS_NODES),
m_nodes(this, IDC_NODESLIST), m_addNode(this, IDC_ADDNODE),
m_updateNodes(this, IDC_UPDATENODES)
{
diff --git a/protocols/Tox/src/tox_profile.cpp b/protocols/Tox/src/tox_profile.cpp
index 76f59202d8..4458e0e6c7 100644
--- a/protocols/Tox/src/tox_profile.cpp
+++ b/protocols/Tox/src/tox_profile.cpp
@@ -193,7 +193,7 @@ INT_PTR CToxProto::OnRemovePassword(WPARAM, LPARAM)
/* ENTER PASSWORD */
CToxEnterPasswordDlg::CToxEnterPasswordDlg(CToxProto *proto)
- : CToxDlgBase(proto, IDD_PASSWORD_ENTER, false),
+ : CToxDlgBase(proto, IDD_PASSWORD_ENTER),
m_password(this, IDC_PASSWORD),
m_ok(this, IDOK)
{
@@ -220,7 +220,7 @@ void CToxEnterPasswordDlg::OnOk(CCtrlButton*)
/* CREATE PASSWORD */
CToxCreatePasswordDlg::CToxCreatePasswordDlg(CToxProto *proto)
- : CToxDlgBase(proto, IDD_PASSWORD_CREATE, false),
+ : CToxDlgBase(proto, IDD_PASSWORD_CREATE),
m_newPassword(this, IDC_PASSWORD_NEW),
m_confirmPassword(this, IDC_PASSWORD_CONFIRM),
m_passwordValidation(this, IDC_PASSWORD_VALIDATION),
@@ -272,7 +272,7 @@ void CToxCreatePasswordDlg::OnOk(CCtrlButton*)
/* CHANGE PASSWORD */
CToxChangePasswordDlg::CToxChangePasswordDlg(CToxProto *proto)
- : CToxDlgBase(proto, IDD_PASSWORD_CHANGE, false),
+ : CToxDlgBase(proto, IDD_PASSWORD_CHANGE),
m_oldPassword(this, IDC_PASSWORD),
m_newPassword(this, IDC_PASSWORD_NEW),
m_confirmPassword(this, IDC_PASSWORD_CONFIRM),