[NETSHELL]
authorThomas Faber <thomas.faber@reactos.org>
Sat, 25 Apr 2015 10:26:04 +0000 (10:26 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Sat, 25 Apr 2015 10:26:04 +0000 (10:26 +0000)
- 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

index 2d9b073..b5ef94b 100644 (file)
@@ -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<LPARAM>(this), NULL);
     if (hProp)
     {
         ret = (*pfnAddPage)(hProp, lParam);