From 61cb1c1445b8ebfef08c864f0062baa68390dd1a Mon Sep 17 00:00:00 2001
From: George Hazan <ghazan@miranda.im>
Date: Mon, 31 Oct 2022 20:19:16 +0300
Subject: =?UTF-8?q?fixes=20#3234=20(WhatsApp:=20=D1=80=D0=B5=D0=B0=D0=BB?=
 =?UTF-8?q?=D0=B8=D0=B7=D0=BE=D0=B2=D0=B0=D1=82=D1=8C=20=D0=B2=D0=BE=D0=B7?=
 =?UTF-8?q?=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE=D1=81=D1=82=D1=8C=20=D0=BF=D0=B5?=
 =?UTF-8?q?=D1=80=D0=B5=D0=B8=D0=BC=D0=B5=D0=BD=D0=BE=D0=B2=D0=B0=D1=82?=
 =?UTF-8?q?=D1=8C=20=D1=81=D0=B5=D1=81=D1=81=D0=B8=D1=8E)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 protocols/WhatsApp/res/whatsapp.rc  | 4 +++-
 protocols/WhatsApp/src/generate.cpp | 3 +--
 protocols/WhatsApp/src/iq.cpp       | 3 ++-
 protocols/WhatsApp/src/options.cpp  | 4 +++-
 protocols/WhatsApp/src/proto.cpp    | 1 +
 protocols/WhatsApp/src/resource.h   | 4 ++--
 6 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/protocols/WhatsApp/res/whatsapp.rc b/protocols/WhatsApp/res/whatsapp.rc
index c11b674959..eb7f75d60f 100644
--- a/protocols/WhatsApp/res/whatsapp.rc
+++ b/protocols/WhatsApp/res/whatsapp.rc
@@ -56,8 +56,10 @@ BEGIN
     EDITTEXT        IDC_NICK,87,5,211,12,ES_AUTOHSCROLL
     LTEXT           "Default group:",IDC_STATIC,5,24,79,10
     EDITTEXT        IDC_DEFGROUP,87,23,211,12,ES_AUTOHSCROLL
+    LTEXT           "Device name:",IDC_STATIC,5,43,79,10
+    EDITTEXT        IDC_DEVICE_NAME,87,41,211,12,ES_AUTOHSCROLL
     CONTROL         "Do not open chat windows on creation",IDC_HIDECHATS,
-                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,4,43,294,10
+                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,4,64,294,10
 END
 
 IDD_GROUPCHAT_INVITE DIALOGEX 0, 0, 215, 170
diff --git a/protocols/WhatsApp/src/generate.cpp b/protocols/WhatsApp/src/generate.cpp
index 1be7d0f7e2..6985e8b17a 100644
--- a/protocols/WhatsApp/src/generate.cpp
+++ b/protocols/WhatsApp/src/generate.cpp
@@ -35,7 +35,6 @@ protobuf_c_text_to_string_internal(CMStringA &str,
 	const ProtobufCMessage *m,
 	const ProtobufCMessageDescriptor *d)
 {
-	int i;
 	size_t j, quantifier_offset;
 	double float_var;
 	const ProtobufCFieldDescriptor *f;
@@ -43,7 +42,7 @@ protobuf_c_text_to_string_internal(CMStringA &str,
 	const ProtobufCEnumValue *enumv;
 
 	f = d->fields;
-	for (i = 0; i < d->n_fields; i++) {
+	for (unsigned i = 0; i < d->n_fields; i++) {
 		/* Decide if something needs to be done for this field. */
 		switch (f[i].label) {
 		case PROTOBUF_C_LABEL_OPTIONAL:
diff --git a/protocols/WhatsApp/src/iq.cpp b/protocols/WhatsApp/src/iq.cpp
index 2a038cb61a..dc20e034e3 100644
--- a/protocols/WhatsApp/src/iq.cpp
+++ b/protocols/WhatsApp/src/iq.cpp
@@ -317,6 +317,7 @@ LBL_Error:
 	Wa__ClientPayload__DevicePairingRegistrationData pairingData;
 	Wa__DeviceProps companion;
 	Wa__DeviceProps__AppVersion appVersion;
+	T2Utf devName(m_wszDeviceName);
 
 	MFileVersion v;
 	Miranda_GetFileVersion(&v);
@@ -331,7 +332,7 @@ LBL_Error:
 		appVersion.tertiary = v[2];   appVersion.has_tertiary = true;
 		appVersion.quaternary = v[3]; appVersion.has_quaternary = true;
 
-		companion.os = "Miranda NG"; 
+		companion.os = devName.get();
 		companion.version = &appVersion;
 		companion.platformtype = WA__DEVICE_PROPS__PLATFORM_TYPE__DESKTOP; companion.has_platformtype = true;
 		companion.requirefullsync = false; companion.has_requirefullsync = true;
diff --git a/protocols/WhatsApp/src/options.cpp b/protocols/WhatsApp/src/options.cpp
index 0b9aaef264..40b1bd4b74 100644
--- a/protocols/WhatsApp/src/options.cpp
+++ b/protocols/WhatsApp/src/options.cpp
@@ -12,7 +12,7 @@ Copyright 
 class COptionsDlg : public CProtoDlgBase<WhatsAppProto>
 {
 	CCtrlCheck chkHideChats;
-	CCtrlEdit edtGroup, edtNick;
+	CCtrlEdit edtGroup, edtNick, edtDevName;
 	ptrW m_wszOldGroup;
 
 public:
@@ -21,10 +21,12 @@ public:
 		chkHideChats(this, IDC_HIDECHATS),
 		edtNick(this, IDC_NICK),
 		edtGroup(this, IDC_DEFGROUP),
+		edtDevName(this, IDC_DEVICE_NAME),
 		m_wszOldGroup(mir_wstrdup(ppro->m_wszDefaultGroup))
 	{
 		CreateLink(edtNick, ppro->m_wszNick);
 		CreateLink(edtGroup, ppro->m_wszDefaultGroup);
+		CreateLink(edtDevName, ppro->m_wszDeviceName);
 
 		if (bFullDlg)
 			CreateLink(chkHideChats, ppro->m_bHideGroupchats);
diff --git a/protocols/WhatsApp/src/proto.cpp b/protocols/WhatsApp/src/proto.cpp
index 5b1a575fff..e28d53a8a2 100644
--- a/protocols/WhatsApp/src/proto.cpp
+++ b/protocols/WhatsApp/src/proto.cpp
@@ -46,6 +46,7 @@ WhatsAppProto::WhatsAppProto(const char *proto_name, const wchar_t *username) :
 	m_arCollections(10, CompareCollections),
 
 	m_wszNick(this, "Nick"),
+	m_wszDeviceName(this, "DeviceName", L"Miranda NG"),
 	m_wszDefaultGroup(this, "DefaultGroup", L"WhatsApp"),
 	m_bUsePopups(this, "UsePopups", true),
 	m_bHideGroupchats(this, "HideChats", true)
diff --git a/protocols/WhatsApp/src/resource.h b/protocols/WhatsApp/src/resource.h
index 79cce313c0..8b20f44e5c 100644
--- a/protocols/WhatsApp/src/resource.h
+++ b/protocols/WhatsApp/src/resource.h
@@ -9,10 +9,10 @@
 #define IDC_HIDECHATS                   1000
 #define IDC_DEFGROUP                    1001
 #define IDC_QRPIC                       1002
-#define IDC_DEFGROUP2                   1002
 #define IDC_CLIST                       1003
 #define IDC_NEWJID                      1004
 #define IDC_NICK                        1005
+#define IDC_DEVICE_NAME                 1006
 
 // Next default values for new objects
 // 
@@ -20,7 +20,7 @@
 #ifndef APSTUDIO_READONLY_SYMBOLS
 #define _APS_NEXT_RESOURCE_VALUE        104
 #define _APS_NEXT_COMMAND_VALUE         40001
-#define _APS_NEXT_CONTROL_VALUE         1006
+#define _APS_NEXT_CONTROL_VALUE         1007
 #define _APS_NEXT_SYMED_VALUE           101
 #endif
 #endif
-- 
cgit v1.2.3