Author: tfaber Date: Sat Apr 25 10:26:04 2015 New Revision: 67390
URL: http://svn.reactos.org/svn/reactos?rev=67390&view=rev Log: [NETSHELL] - Don't use the connection's name as the tab title in the Connection Properties dialog. Patch by Lee Schroeder. CORE-9603 #resolve
Modified: trunk/reactos/dll/shellext/netshell/lanconnectui.cpp
Modified: trunk/reactos/dll/shellext/netshell/lanconnectui.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/netshell/lanco... ============================================================================== --- trunk/reactos/dll/shellext/netshell/lanconnectui.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/netshell/lanconnectui.cpp [iso-8859-1] Sat Apr 25 10:26:04 2015 @@ -590,7 +590,7 @@ if (FAILED(hr)) return hr;
- hProp = InitializePropertySheetPage(MAKEINTRESOURCEW(IDD_NETPROPERTIES), LANPropertiesUIDlg, (LPARAM)this, m_pProperties->pszwName); + hProp = InitializePropertySheetPage(MAKEINTRESOURCEW(IDD_NETPROPERTIES), LANPropertiesUIDlg, reinterpret_cast<LPARAM>(this), NULL); if (hProp) { ret = (*pfnAddPage)(hProp, lParam);