From 0d0ddf242d81bff34f9dfa77f49ab858e574fa04 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 25 Apr 2015 10:26:04 +0000 Subject: [PATCH] [NETSHELL] - Don't use the connection's name as the tab title in the Connection Properties dialog. Patch by Lee Schroeder. CORE-9603 #resolve svn path=/trunk/; revision=67390 --- reactos/dll/shellext/netshell/lanconnectui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/shellext/netshell/lanconnectui.cpp b/reactos/dll/shellext/netshell/lanconnectui.cpp index 2d9b0734a47..b5ef94bbc5a 100644 --- a/reactos/dll/shellext/netshell/lanconnectui.cpp +++ b/reactos/dll/shellext/netshell/lanconnectui.cpp @@ -590,7 +590,7 @@ CNetConnectionPropertyUi::AddPages( if (FAILED(hr)) return hr; - hProp = InitializePropertySheetPage(MAKEINTRESOURCEW(IDD_NETPROPERTIES), LANPropertiesUIDlg, (LPARAM)this, m_pProperties->pszwName); + hProp = InitializePropertySheetPage(MAKEINTRESOURCEW(IDD_NETPROPERTIES), LANPropertiesUIDlg, reinterpret_cast(this), NULL); if (hProp) { ret = (*pfnAddPage)(hProp, lParam);